preface.make
Via_kleisli_composition.Req
preface
preface.core
preface.specs
preface.stdlib
type 'a t
The type held by the Monad.
Monad
val return : 'a -> 'a t
Create a new 'a t.
'a t
val compose_left_to_right : ('a -> 'b t) -> ('b -> 'c t) -> 'a -> 'c t
Composing monadic functions using Kleisli Arrow (from left to right).