CCArrayLabels.Infix
val (>>=) : 'a t -> ('a -> 'b t) -> 'b t
a >>= f is the infix version of flat_map.
a >>= f
flat_map
val (>>|) : 'a t -> ('a -> 'b) -> 'b t
a >>| f is the infix version of map.
a >>| f
map
val (>|=) : 'a t -> ('a -> 'b) -> 'b t
a >|= f is the infix version of map.
a >|= f
val (--) : int -> int -> int t
x -- y creates an array containing integers in the range x .. y. Bounds included.
x -- y
x .. y
val (--^) : int -> int -> int t
x --^ y creates an array containing integers in the range x .. y. Right bound excluded.
x --^ y
val let+ : 'a t -> ('a -> 'b) -> 'b t
val and+ : 'a t -> 'b t -> ('a * 'b) t
val let* : 'a t -> ('a -> 'b t) -> 'b t
val and* : 'a t -> 'b t -> ('a * 'b) t