Module

FRP.Event

Package
purescript-behaviors
Repository
paf31/purescript-behaviors

#Event Source

data Event 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

#subscribe Source

subscribe :: forall r a eff. Event a -> (a -> Eff (frp :: FRP | eff) r) -> Eff (frp :: FRP | eff) (Eff (frp :: FRP | eff) Unit)

Subscribe to an Event by providing a callback.

subscribe returns a canceller function.

Re-exports from Data.Filterable

#Filterable Source

class (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:

  • map f ≡ filterMap (Just <<< f)
  • filter ≡ filterMap <<< maybeBool
  • filterMap p ≡ filter (isJust <<< p)

Default implementations are provided by the following functions:

  • partitionDefault
  • partitionDefaultFilter
  • partitionDefaultFilterMap
  • filterDefault
  • filterDefaultPartition
  • filterDefaultPartitionMap

Members

Instances

Re-exports from FRP.Event.Class

#IsEvent Source

class (Alternative event, Filterable event) <= IsEvent event  where

Functions 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.
  • keepLatest flattens 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 b
  • keepLatest :: forall a. event (event a) -> event a
  • sampleOn :: forall b a. event a -> event (a -> b) -> event b
  • fix :: forall o i. (event i -> { input :: event i, output :: event o }) -> event o

#withLast Source

withLast :: forall a event. IsEvent event => event a -> event { last :: Maybe a, now :: a }

Compute differences between successive event values.

#sampleOn_ Source

sampleOn_ :: forall b a event. IsEvent event => event a -> event b -> event a

Create an Event which samples the latest values from the first event at the times when the second event fires, ignoring the values produced by the second event.

#mapAccum Source

mapAccum :: forall c b a event. IsEvent event => (a -> b -> Tuple b c) -> event a -> b -> event c

Map over an event with an accumulator.

For example, to keep the index of the current event:

mapAccum (\x i -> Tuple (i + 1) (Tuple x i)) 0`.

#folded Source

folded :: forall a event. IsEvent event => Monoid a => event a -> event a

Combine subsequent events using a Monoid.

#count Source

count :: forall a event. IsEvent event => event a -> event Int

Count the number of events received.