reactive-bacon-0.4.1: FRP (functional reactive programming) framework

Safe HaskellSafe-Inferred

Reactive.Bacon.Property

Synopsis

Documentation

mapP :: PropertySource s => (a -> b) -> s a -> Property bSource

combineP :: PropertySource s1 => PropertySource s2 => s1 a -> s2 b -> Property (a, b)Source

combineWithP :: PropertySource s1 => PropertySource s2 => (a -> b -> c) -> s1 a -> s2 b -> Property cSource

combineWithLatestOfP :: PropertySource s1 => PropertySource s2 => (a -> b -> c) -> s1 a -> s2 b -> Property cSource

Combines the values from the first source to the current value of the second source