Safe Haskell | None |
---|---|
Language | Haskell98 |
Minimal FRP core.
For documentation purposes only, to serve as a minimal FRP implementation. Based on Antony Courtney's thesis "Modeling User Interfaces in a Functional Language", page 48 (see https://www.antonycourtney.com/pubs/ac-thesis.pdf, page 61).
Notes:
- While
time
is defined as "core", it is not a primitive in Yampa, and it is actually defined as theintegral
of1
over time. - This does not include
derivative
. - This does not include parallel switching combinators (see
Switches
).
Synopsis
- data SF a b
- iPre :: a -> SF a a
- arr :: Arrow a => (b -> c) -> a b c
- (>>>) :: Category cat => cat a b -> cat b c -> cat a c
- first :: Arrow a => a b c -> a (b, d) (c, d)
- loop :: ArrowLoop a => a (b, d) (c, d) -> a b c
- integral :: VectorSpace a s => SF a a
- data Event a
- switch :: SF a (b, Event c) -> (c -> SF a b) -> SF a b
- type Time = Double
- time :: SF a Time
Signal function
Signal function that transforms a signal carrying values of some type a
into a signal carrying values of some type b
. You can think of it as
(Signal a -> Signal b). A signal is, conceptually, a
function from Time
to value.
Instances
Arrow SF Source # | Signal Functions as Arrows. See "The Yampa Arcade", by Courtney, Nilsson and Peterson. |
ArrowChoice SF Source # | Choice of which SF to run based on the value of a signal. |
ArrowLoop SF Source # | Creates a feedback loop without delay. |
Defined in FRP.Yampa.InternalCore | |
Category SF Source # | Composition and identity for SFs. |
Stateless combinators
Initialized delay operator.
Creates an SF that delays the input signal, introducing an infinitesimal delay (one sample), using the given argument to fill in the initial output at time zero.
first :: Arrow a => a b c -> a (b, d) (c, d) #
Send the first component of the input through the argument arrow, and copy the rest unchanged to the output.
Stateful combinators
Instantly loops an SF, making the second output also the second input, using the fix combinator. This introduces a instant loop; without delays, that may lead to an infinite loop.
integral :: VectorSpace a s => SF a a Source #
Integration using the rectangle rule.
Switching upon certain events
A single possible event occurrence, that is, a value that may or may not occur. Events are used to represent values that are not produced continuously, such as mouse clicks (only produced when the mouse is clicked, as opposed to mouse positions, which are always defined).
Instances
Monad Event Source # | Monad instance |
Functor Event Source # | Functor instance (could be derived). |
Applicative Event Source # | Applicative instance (similar to |
Alternative Event Source # | Alternative instance |
Eq a => Eq (Event a) Source # | Eq instance (equivalent to derived instance) |
Ord a => Ord (Event a) Source # | Ord instance (equivalent to derived instance) |
Show a => Show (Event a) Source # | |
NFData a => NFData (Event a) Source # | NFData instance |
Defined in FRP.Yampa.Event | |
Forceable a => Forceable (Event a) Source # | Forceable instance |
switch :: SF a (b, Event c) -> (c -> SF a b) -> SF a b Source #
Basic switch.
By default, the first signal function is applied. Whenever the second value in the pair actually is an event, the value carried by the event is used to obtain a new signal function to be applied *at that time and at future times*. Until that happens, the first value in the pair is produced in the output signal.
Important note: at the time of switching, the second signal function is applied immediately. If that second SF can also switch at time zero, then a double (nested) switch might take place. If the second SF refers to the first one, the switch might take place infinitely many times and never be resolved.
Remember: The continuation is evaluated strictly at the time of switching!
Time
Time is used both for time intervals (duration), and time w.r.t. some agreed reference point in time.