I am working on my first ClojureScript project, and I am not able to find core.async
functions/macros I am used to in Clojure; like thread
, <!!
. (I checked the source code in github as well and they do not exist in the cljs source)
Is there some reference I can use to find the differences between the usage of core.async
in Clojure and ClojureScript?
Also, how do I perform a blocking get operation from a Looks like cljs does not have any blocking operations in core.asyncchan
outside a go
block in cljs?
Or just start a separate thread for a function which is not going to return any value?
Google doesn't really seem to provide a lot of info about core.async
in cljs
Any help or pointers would be appreciated!