Module
FRP.Event.Class
- Package
- purescript-behaviors
- Repository
- paf31/purescript-behaviors
#IsEvent Source
class (Alternative event, Filterable event) <= IsEvent event whereFunctions which an Event type should implement, so that
Behaviors can be defined in terms of any such event type:
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.
Members
fold :: forall b a. (a -> b -> b) -> event a -> b -> event bkeepLatest :: forall a. event (event a) -> event asampleOn :: forall b a. event a -> event (a -> b) -> event bfix :: forall o i. (event i -> { input :: event i, output :: event o }) -> event o
Re-exports from Data.Filterable
#Filterable Source
class (Functor f) <= Filterable f whereFilterable 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:
map f ≡ filterMap (Just <<< f)filter ≡ filterMap <<< maybeBoolfilterMap p ≡ filter (isJust <<< p)
Default implementations are provided by the following functions:
partitionDefaultpartitionDefaultFilterpartitionDefaultFilterMapfilterDefaultfilterDefaultPartitionfilterDefaultPartitionMap
Members
Instances
Filterable ArrayFilterable Maybe(Monoid m) => Filterable (Either m)Filterable List(Ord k) => Filterable (Map k)