Module type Bind.WITH_KLEISLI_COMPOSITION

Minimal definition using compose_left_to_right.

type 'a t

The type held by the Bind.

val compose_left_to_right : ('a -> 'b t) -> ('b -> 'c t) -> 'a -> 'c t

Composing monadic functions using Kleisli Arrow (from left to right).