Module type Indexed_bind.WITH_KLEISLI_COMPOSITION

Minimal definition using compose_left_to_right.

type ('a, 'index) t

The type held by the Indexed Bind.

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).