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