jam40jeff

Results 27 comments of jam40jeff

Implementing similar reference counting logic would seem to work for discrete streams and cells which are "observed" using `Listen`, but I am not sure if it would suffice for the...

I like that idea. It would permit a more deterministic deregistration of listeners even in other languages as well as the ability to make other optimizations such as not running...

@the-real-blackh, I may not be following, but it seems like "something" in scope would have to hold a reference to the switched stream or cell, right? If so, it would...

In the example, the lambda should keep `a2` alive through the closure. The closure should be kept alive by the result of `map`. The result of `map` should be kept...

@the-real-blackh, I should be using a different terminology than "reference counting"; maybe "listener counting". In your example, the lambda would prevent `a2` from being garbage collected. The fact that there...

@the-real-blackh Do you have any thoughts on this? My goals for this are: (1) The obvious...provide useful trace information to the developer debugging FRP logic. (2) No change to the...

This is related to #60 and may cover sub-item (3) of that issue.

If Verb and Object must arrive simultaneously, then that means you MUST be parsing out both a Verb and Object at the same time. Why can't you do something like:...

The C# 2.0 implementation (which I believe has been ported to some other languages now) has both the Behavior and Cell types. Behavior can be continuous as it does not...

Thanks for the test. I have fixed this in the C# and F# versions (but not pushed yet) and will try to take a look at the Java version soon.