Bind.WITH_BIND
Minimal definition using bind.
bind
type 'a t
The type held by the Bind.
Bind
val bind : ('a -> 'b t) -> 'a t -> 'b t
bind f m passes the result of computation m to function f.
bind f m
m
f