If you're looking for feedback, the input I gave on Reddit seems like a
good place to start (
https://www.reddit.com/r/Clojure/comments/7c0p3c/functional_implementation_of_coreasync/dpmvjpp/).
Like
I said, it's not really comparable to core.async at all, since it doesn't
properly support thread synchronization or back-pressure, and doesn't
implement any version of alts (aka select) or lightweight threads. It's a
fine implementation of threads busy waiting on immutable queues, but that
is a completely different thing than implementing the core.async primitives
or even a subset of CSP.



On Sun, Nov 12, 2017 at 3:05 PM, Jay Porcasi <jaygporc...@gmail.com> wrote:

> wow looks so neat!
>
> i would be interested as well to know what experienced async users have to
> say
>
> Jay
>
> On Friday, November 10, 2017 at 1:32:52 PM UTC+7, Divyansh Prakash wrote:
>>
>>
>> Hi!
>>
>> I was messing around with Clojure and somehow ended up implementing a 
>> functional
>> core.async clone <https://github.com/divs1210/functional-core-async>
>> using a single threaded event loop.
>> By 'functional' I mean it is not macro based, unlike core.async.
>> It also fits into ~80 lines of sparse, documented code (check out
>> core.clj
>> <https://github.com/divs1210/functional-core-async/blob/master/src/functional_core_async/core.clj>
>> )
>> I wanted to know if this approach is handicapped in some way?
>> I'm just learning, and my understanding might be way off base here.
>>
>> Thanks!
>> - Divyansh
>>
> --
> 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.
> To unsubscribe from this group, send email to
> clojure+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/clojure?hl=en
> ---
> You received this message because you are subscribed to the Google Groups
> "Clojure" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to clojure+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>



-- 
“One of the main causes of the fall of the Roman Empire was that–lacking
zero–they had no way to indicate successful termination of their C
programs.”
(Robert Firth)

-- 
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.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to