Live data from Hacker News

Viewing profile — eulerfx234

eulerfx234

HN member
Joined
Fri, Jun 10, 2016, 1:50 PM UTC
HN karma
23
Public activity
3 items

About eulerfx234

No profile information was provided.

Recent public activity

  1. comment
    Comment #11883282

    In CML/Hopac, async channels (buffers) are implemented in terms of sync channels - there is not async channel primitive built in. Synchronization is the essence of this model. When…

  2. comment
    Comment #11876573

    Also, to compare with other languages: Async is similar to a Future (such as in Java), with the difference that Future produces a result once and caches it, whereas Async re-evalua…

  3. comment
    Comment #11876480

    I'm an engineer at Jet and hopefully I'll be able to answer your question. The concurrency model within F# is based on continuations. The type Async = (('a -> unit) -> unit) - its …