Mitchell Dalvi Rosen
Mitchell Dalvi Rosen
LGTM! Thanks! =) Two last things - 1. @HeinrichApfelmus did you want to look this over before merging? 2. Could you add an entry to the changelog and your name...
I'm not familiar with `wx` code, so I can't really read this example, but I do have a hunch =) Is it possible you are rendering a frame at the...
Would it be sensible to provide a variant with the opposite boundaries? That is, with these semantics: ```haskell switchE ee = \time0 -> concat [trim t1 t2 e | (t1,t2,e)
Okay, thank you for the clarification! I thought of another detail that could be expounded on in the documentation regarding mutual recursion between events and behaviors. > In general, _mutual...
Actually I think I misspoke there, because in my example, `eDisconnect` does not depend directly on `eClients`, but rather switches whenever it emits. It seems superficially similar, but when I...
By the way, this combinator apparently exists in `reflex`: [`switchPromptly`](https://hackage.haskell.org/package/reflex-0.4.0/docs/Reflex-Class.html)
Hello! Any updates on this work?
It would be great to get some of your work merged, I think the only thing @HeinrichApfelmus objected to was ripping out the priority queue of nodes to evaluate.
Interesting! I think you are correct that case 1 is not currently handled by the code, per the line line I deleted from `connectChild`: ```haskell mkWeakNodeValue child (P parent) ```
Sure, I was playing around with implementing a sort of arcade, in which some minigames had a concept of a timer and others did not. Rather than have a global...