Module Lambda_streams.Async
type 'a input= 'a ttype 'a output= 'a tAsynchronous output streams are repesented identically to input streams (push-based) .
type 'a connection= ('a input, unit Sync.output) Connection.tRepresents a connection-based input stream with a synchronous output stream to close it.
type 'a connection'= ('a input, unit output) Connection.tRepresents a connection-based input stream with an asynchronous output stream to close it.
val make : (('a -> unit) -> unit) -> 'a tval listen : ('a -> unit) -> 'a t -> unitListens for values from an asynchronous stream, somewhat similar to
Sync.nextbut push-based instead of pull-based.
val pure : 'a -> 'a tval map : ('a -> 'b) -> 'a t -> 'b tval filter : ('a -> bool) -> 'a t -> 'a tval scan : ('b -> 'a -> 'b) -> 'b -> 'a t -> 'b t
module type INTERVAL = sig ... end