Base.Monad
A monad is an abstraction of the concept of sequencing of computations. A value of type 'a monad
represents a computation that returns a value of type 'a
.
module type Basic = sig ... end
module type Basic2 = sig ... end
module type Basic3 = sig ... end
module type Basic_indexed = sig ... end
module type Infix = sig ... end
module type Infix2 = sig ... end
module type Infix3 = sig ... end
module type Infix_indexed = sig ... end
module type Syntax = sig ... end
module type Syntax2 = sig ... end
module type Syntax3 = sig ... end
module type Syntax_indexed = sig ... end
module type S_without_syntax = sig ... end
module type S = sig ... end
module type S2 = sig ... end
module type S3 = sig ... end
module type S_indexed = sig ... end
module Make_indexed (X : Basic_indexed) : S_indexed with type ('a, 'd, 'e) t := ('a, 'd, 'e) X.t