Infix.Operationtype 'a t = 'a Core.tThe type held by the Monad.
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_nel 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.
times n x apply combine on x n times. If n is lower than 1 the function will returns neutral.