Via_map_and_kleisli_composition.Req
type 'a t
The type held by the Bind.
Bind
val map : ('a -> 'b) -> 'a t -> 'b t
Mapping over t from 'a to 'b.
t
'a
'b
val compose_left_to_right : ('a -> 'b t) -> ('b -> 'c t) -> 'a -> 'c t
Composing monadic functions using Kleisli Arrow (from left to right).