Safe Haskell | None |
---|---|
Language | Haskell2010 |
Programming with many-shot events, i.e. events that may occur zero or more times.
Synopsis
- map :: Box (a -> b) -> Event a -> Event b
- never :: Event a
- switch :: Str a -> Event (Str a) -> Str a
- switchTrans :: (Str a -> Str b) -> Event (Str a -> Str b) -> Str a -> Str b
- type Event a = Str (Maybe' a)
- trigger :: Box (a -> Bool) -> Str a -> Event a
- triggerMap :: Box (a -> Maybe' b) -> Str a -> Event b
Documentation
map :: Box (a -> b) -> Event a -> Event b Source #
Apply a function to the values of the event (every time it occurs).
switch :: Str a -> Event (Str a) -> Str a Source #
switch s e
will behave like s
but switches to s'$ every time
the event
s'@.e
occurs with some value
switchTrans :: (Str a -> Str b) -> Event (Str a -> Str b) -> Str a -> Str b Source #
Like switch
but works on stream functions instead of
streams. That is, switchTrans s e
will behave like s
but
switches to s'$ every time the event
s'@.e
occurs with some value