what does release-pending-sends do?

2015-05-31 Thread lawrence
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

complex number library

2015-05-31 Thread Alan Forrester
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

Re: what does release-pending-sends do?

2015-05-31 Thread James Reeves
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.

[ANN] thi.ng additions/updates

2015-05-31 Thread Karsten Schmidt
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)

complex number library

2015-05-31 Thread Daniel
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.

Re: Get anonymous function's(which is parameter to function) body in called function

2015-05-31 Thread Shalaka Patil
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 sha...@helpshift.com

When use Pedestal, Hoplon, Bidi and Route-one?

2015-05-31 Thread Krzysztof Władyka
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