Hareactive.Combinators
- Package
- purescript-hareactive
- Repository
- funkia/purescript-hareactive
This module contains all the combinators in Hareactive.
The lists below contains convenient grouping of various functions.
Accumulating state
accum :: (a -> b -> b) -> b -> Stream a -> Now (Behavior b)
scan :: (a -> b -> b) -> b -> Stream a -> Now (Stream b)
integrate :: Behavior Number -> Now (Behavior Number)
Stepping and switching
The term "switch" refers to a behavior that changes between one or more
behaviors. The term "step" refers to a behavior changes between
constants. In other words, "switch" is a generalization of "step" that one
arrives at by replacing a
with Behavior a
.
stepTo :: a -> Future a -> Behavior a
switchTo :: Behavior a -> Future (Behavior a) -> Behavior a
stepper :: a -> Stream a -> Now (Behavior a)
switcher :: Behavior a -> Stream (Behavior a) -> Now (Behavior a)
Shifts
The term "shift" refers to creating a stream that changes between one or more streams.
shiftCurrent :: Behavior (Stream a) -> Stream a
shift :: Stream (Stream a) -> Now (Stream a)
Converting between reactive values
- From
Behavior
toStream
: changes. - From
Future
toBehavior
: stepTo. - From
Stream
toBehavior
: accum, stepper. - From
Stream
toFuture
: nextOccurrence.
Flattening nested reactive values.
Behavior ( a)
: sample, momentBehavior (Behavior a)
:join
Behavior (Stream a)
: shiftCurrentStream (Stream a)
: shiftStream (Behavior a)
: switcherFrom, selfieFuture (Behavior a)
: switchToFuture (Future a)
:join
#applyS Source
applyS :: forall b a. Behavior (a -> b) -> Stream a -> Stream b
This function is similar to apply
for behaviors except the last argument
is a stream instead of a behaviors. Whenever the stream has an occurrence
the function at the behavior is applied to the value of the occurrence.
This function has an operator alias <~>
. The operator is intended to work
in tandem with <$>
and <*>
. As an example, assume that f3
is a
function of three arguments, that b1
and b2
are two behaviors, and that
s
is a stream.` Then the function can be applied to the two behaviors and
the stream in the following way.
f3 <$> b1 <*> b2 <~> s
With the above code, whenever s
has an occurrence the value of b1
,
b2
, and the value of the occurrence will be applied to f3
and its
return value will be the value of the occurrence in the resulting stream.
Semantically.
applyS b s = map (\{time, a} -> {time, a: (b time) a}) s
#filterApply Source
filterApply :: forall a. Behavior (a -> Boolean) -> Stream a -> Stream a
A combination of filter
and apply
. For each occurrence of the stream
the predicate at the behavior at that time is applied to the value and the
returned stream contains the occurrence if and only if the predicate
returns true.
This function can be seen as a generalization of filter
. Where filter
takes a constant predicate function filterApply
takes a varying predicate
in the form of a behavior of a predicate. As such filterApply (pure
predicate) stream
is equivalent to filter predicate stream
.
#filterJust Source
filterJust :: forall a. Stream (Maybe a) -> Stream a
Removes all Nothing
values from the stream and extracts the
values from the remaining Just
s.
#split Source
split :: forall a. (a -> Boolean) -> Stream a -> { fail :: Stream a, pass :: Stream a }
Takes a predicate and a stream. A record of to streams is returned. The first stream includes all occurrences from the original stream which pass the predicate test and the second stream includes all occurrences which fail to pass the predicate.
{ pass: smallNumbers, fail: largeNumbers } = split (_ < 100) streamOfNumbers
#snapshotWith Source
snapshotWith :: forall c b a. (a -> b -> c) -> Behavior b -> Stream a -> Stream c
Returns a stream that occurs whenever the given stream occurs. At each occurrence the value and the value from the behavior is passed to the function and the return value is the value of the returned streams occurrence.
#stepperFrom Source
stepperFrom :: forall a. a -> Stream a -> Behavior (Behavior a)
Generalization of stepper
satisfying stepper init s = sample $
stepperFrom init s
.
#shiftCurrent Source
shiftCurrent :: forall a. Behavior (Stream a) -> Stream a
Takes a stream valued behavior and returns a stream that emits values from the current stream at the behavior. I.e. the returned stream always "shifts" to the current stream at the behavior.
#measureTime Source
measureTime :: Now (Behavior Number)
The now-computation results in a behavior that tracks the time passed since its creation.
#measureTimeFrom Source
measureTimeFrom :: Behavior (Behavior Number)
A behavior giving access to continous time. When sampled the outer behavior returns a behavior whose value is the time since the outer behavior was sampled.
Semantically.
measureTimeFrom = \from, to -> to - from
#toggle Source
toggle :: forall b a. Boolean -> Stream a -> Stream b -> Now (Behavior Boolean)
Creates a behavior that switches between true
and false
. Initally it
takes the value of its first argument. Each occurrence of the first stream
will make the behavior true
and each occurrence of the second stream
makes the behavior false
.
The example below demonstrates one use case for toggle
. A stream
doorOpen
signifies that a door has been opened and similairly a stream
doorClose
signifies that the door has closed. toggle
is then used to
construct a behavior that at any time represents the state of the door.
isDoorOpen <- toggle false doorOpen doorClose
#nextOccurrence Source
nextOccurrence :: forall a. Stream a -> Now (Future a)
Returns the next occurrence at the stream as a future.
#nextOccurrenceFrom Source
nextOccurrenceFrom :: forall a. Stream a -> Behavior (Future a)
Returns the next occurrence at the stream as a future.
#integrate Source
integrate :: Behavior Number -> Now (Behavior Number)
Integrate behavior with respect to time. The value of the given behavior is interpreted as being a rate of change per second.
Note that integrate
is implemented using Euler's method. Hence the
resulting behavior is not exact but includes some numerical error.
#runFutureEffect Source
runFutureEffect :: forall a. Future (Effect a) -> Now (Future a)
Takes a future effect and returns a now-computation that runs the effect once the future occurs and delivers the result in a future.
#runStreamEffect Source
runStreamEffect :: forall a. Stream (Effect a) -> Now (Stream a)
Takes a stream of effects and returns a now-computation that runs the effect in each occurrence and delivers the result in a stream.
#loopNow Source
loopNow :: forall a. (a -> Now a) -> Now a
Creates a Now
-computation that can depend recursively on its own.
The type variable a
must be a record consisting of only Future
,
Stream
, or Behavior
values. This constraint is not, yet, enforced at
the type level.
The counter
function in the following contrieved example returns a
behavior. Whenever the given stream has an occurrence the counter is
increased by adding its current value to a snapshot of its current value.
counter :: forall a. Stream a -> Stream Integer
counter stream = loopNow f
where f { count } = do
let countS = snapshot count stream
count <- accum (+) 1 countS
pure { count }