FRP.Event
- Package
- purescript-hyrule
- Repository
- mikesol/purescript-hyrule
#keepLatest Source
keepLatest :: forall m s a. MonadST s m => AnEvent m (AnEvent m a) -> AnEvent m aFlatten a nested Event, reporting values only from the most recent
inner Event.
#AnEvent Source
newtype AnEvent :: (Type -> Type) -> Type -> Typenewtype AnEvent m a
An Event represents a collection of discrete occurrences with associated
times. Conceptually, an Event is a (possibly-infinite) list of values-and-times:
type Event a = List { value :: a, time :: Time }
Events are created from real events like timers or mouse clicks, and then combined using the various functions and instances provided in this module.
Events are consumed by providing a callback using the subscribe function.
Instances
Functor (AnEvent m)(Applicative m) => Compactable (AnEvent m)(Applicative m) => Filterable (AnEvent m)(Applicative m) => Alt (AnEvent m)(Applicative m) => Plus (AnEvent m)(MonadST s m) => IsEvent (AnEvent m)
#bang Source
bang :: forall m a. Applicative m => a -> AnEvent m aRe-exports from FRP.Event.Class
#Filterable Source
class Filterable :: (Type -> Type) -> Constraintclass (Compactable f, Functor f) <= Filterable f where
Filterable represents data structures which can be partitioned/filtered.
partitionMap- partition a data structure based on an either predicate.partition- partition a data structure based on boolean predicate.filterMap- map over a data structure and filter based on a maybe.filter- filter a data structure based on a boolean.
Laws:
Functor Relation:
filterMap identity ≡ compactFunctor Identity:
filterMap Just ≡ identityKleisli Composition:
filterMap (l <=< r) ≡ filterMap l <<< filterMap rfilter ≡ filterMap <<< maybeBoolfilterMap p ≡ filter (isJust <<< p)Functor Relation:
partitionMap identity ≡ separateFunctor Identity 1:
_.right <<< partitionMap Right ≡ identityFunctor Identity 2:
_.left <<< partitionMap Left ≡ identityf <<< partition ≡ partitionMap <<< eitherBoolwheref = \{ no, yes } -> { left: no, right: yes }f <<< partitionMap p ≡ partition (isRight <<< p)wheref = \{ left, right } -> { no: left, yes: right}
Default implementations are provided by the following functions:
partitionDefaultpartitionDefaultFilterpartitionDefaultFilterMappartitionMapDefaultfilterDefaultfilterDefaultPartitionfilterDefaultPartitionMapfilterMapDefault
Members
Instances
Filterable ArrayFilterable Maybe(Monoid m) => Filterable (Either m)Filterable List(Ord k) => Filterable (Map k)
#IsEvent Source
class IsEvent :: (Type -> Type) -> Constraintclass (Plus event, Filterable event) <= IsEvent event where
Functions which an Event type should implement:
fold: combines incoming values using the specified function, starting with the specific initial value.keepLatestflattens a nested event, reporting values only from the most recent inner event.sampleOn: samples an event at the times when a second event fires.fix: compute a fixed point, by feeding output events back in as inputs.bang: A one-shot event that happens NOW.
Members
fold :: forall a b. (a -> b -> b) -> event a -> b -> event bkeepLatest :: forall a. event (event a) -> event asampleOn :: forall a b. event a -> event (a -> b) -> event bfix :: forall i o. (event i -> { input :: event i, output :: event o }) -> event o