Hi,
I am trying figure out which one (Pedestal, Hoplon, Bidi) should i use? I
didn't find any good article in the Internet which help me with this choice.
>From https://github.com/juxt/bidi i can read Pedestal is isomorphic, but
Bidi is also cljs. What is it mean? What is the difference?
I fo
I am looking here:
http://clojuredocs.org/clojure.core/release-pending-sends
It says:
Normally, actions sent directly or indirectly during another action
are held until the action completes (changes the agent's
state). This function can be used to dispatch any pending sent
actions immediately.
What it means is if you have nested actions, e.g.
(def a (agent 0))
(def b (agent 0))
(send a (fn [x] (send b inc) (inc x)))
So under normal circumstances, the inner send is placed on a queue until
the value of a is changed. This means we can guarantee that a will change
before b.
I
https://clojars.org/complex
https://github.com/alanforr/complex
Complex is a Clojure library for doing complex number calculations
that wraps the Java commons-math3 Complex library.
complex
A Clojure library for doing calculations with complex numbers. Wraps
the Java commons-math3 Complex libra
Hi Clojurians,
had a bit of a release train this weekend w/ some new (and old,
overdue) additions to the thi.ng library collection (all including
examples):
http://thi.ng/simplecl - OpenCL wrapper
http://thi.ng/structgen - Interop between C structs & Clojure data
structures (maps/vectors)
http://
Criterium should probably be just a Dev dependency.
--
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your
first post.
Okay. Thanks BG :)
On Saturday, May 30, 2015 at 5:13:00 AM UTC+5:30, Baishampayan Ghose wrote:
>
> May be wrap it up in a `wait-until-with-meta` macro as Herwig suggested?
> Then you can search and replace the invocations. ~BG
>
> On Fri, May 29, 2015 at 9:30 PM, Shalaka Patil > wrote:
>
>> Hey
I wonder why this can't become a language feature? Couldn't Clojure attach
the :source metadata directly to function objects (in addition to vars)? Is
there a JIRA ticket for it? I'd instant-vote for it because I know it would
make my debugging faster.
On Thursday, May 28, 2015 at 1:03:52 PM UT