purescript-event icon indicating copy to clipboard operation
purescript-event copied to clipboard

The Event type, extracted from purescript-behaviors

Results 7 purescript-event issues
Sort by recently updated
recently updated
newest added

In his talk on FRP https://www.youtube.com/watch?v=Agu6jipKfYw Evan Czaplicki mentions that `join :: Signal (Signal a) -> Signal a` is the workhorse of higher-order FRP and allows dynamic signals. ![Screenshot (3)](https://user-images.githubusercontent.com/356097/105227893-245e1400-5b62-11eb-8eae-ef38a58f8dcb.png)...

👋 Hi Phil! This PR updates `event` for compatibility with PureScript 0.14. I've opened this pull request instead of waiting for the official release because Halogen depends on this library,...

Hello, This removes the use of `unsafeRefEq`. In its place, it generates a unique integer per subscriber which is used to delete the subscriber when the cancellation function is called....

When you first look at definition of fix it's not clear why use of unsafePerformEffect is safe, would be great if an explanation is added

From https://github.com/paf31/purescript-behaviors/issues/28#issue-277348392, if we have an event `e`, then `e e` results in two events at each time point at which `e` fires, with the first of each pair reporting...

From https://github.com/paf31/purescript-behaviors/issues/27: > Consider this example: > > ``` > module Example where > > import Prelude > > import Control.Monad.Eff (Eff) > import Control.Monad.Eff.Console (CONSOLE, log) > import FRP...