List.Monad_plustype 'a t = 'a tThe type held by the Monad_plus.
join remove one level of monadic structure, projecting its bound argument into the outer level.
val return : 'a -> 'a tCreate a new 'a t.
Composing monadic functions using Kleisli Arrow (from left to right).
val neutral : 'a tThe neutral element of the Alternative.
Composing monadic functions using Kleisli Arrow (from right to left).
Mapping over from 'a and 'b to 'c over 'a t and 'b t to 'c t.
Mapping over from 'a and 'b and 'c to 'd over 'a t and 'b t and 'c t to 'd t.
times n x apply combine on x n times. If n is lower than 1 the function will returns None.
val reduce_nel : 'a t Preface_core.Nonempty_list.t -> 'a tReduce a Nonempty_list.t using combine.
Create a new 'a t, replacing all values in the 'b t by given a value of 'a.
module Infix : Preface_specs.Monad_plus.INFIX with type 'a t := 'a tInfix version of OPERATION.compose_right_to_left.
Sequentially compose two actions, discarding any value produced by the first.
Sequentially compose two actions, discarding any value produced by the second.
Infix version of Preface_specs.Functor.CORE.map.
Flipped and infix version of Preface_specs.Functor.CORE.map.
Infix version of Preface_specs.Functor.OPERATION.replace.
Flipped and infix version of Preface_specs.Functor.OPERATION.replace.
module Syntax : Preface_specs.Monad_plus.SYNTAX with type 'a t := 'a tSyntaxic shortcuts for flipped version of CORE.bind:
let* x = e in f is equals to bind (fun x -> f) e.