Module Lambda_streams__Signal
Represents a signal that either has data or is terminated. Used for Finite
streams.
val pure : 'a -> 'a t
val empty : unit -> 'a t
val default : 'a -> 'a t -> 'a
Get the signal data or the provided default value
val satisfies : ('a -> bool) -> 'a t -> bool
Check whether the signal satisfies the predicate. Returns
false
if it'sEndOfSignal