Sourceval (>>=) : 'a t -> ('a -> 'b t) -> 'b t a >>= f is the infix version of flat_map.
Sourceval (>>|) : 'a t -> ('a -> 'b) -> 'b t a >>| f is the infix version of map.
Sourceval (>|=) : 'a t -> ('a -> 'b) -> 'b t a >|= f is the infix version of map.
Sourceval (--) : int -> int -> int t x -- y creates an array containing integers in the range x .. y. Bounds included.
Sourceval (--^) : int -> int -> int t x --^ y creates an array containing integers in the range x .. y. Right bound excluded.
Let operators on OCaml >= 4.08.0, nothing otherwise
Sourceval (let+) : 'a array -> ('a -> 'b) -> 'b array Sourceval (and+) : 'a array -> 'b array -> ('a * 'b) array Sourceval (let*) : 'a array -> ('a -> 'b array) -> 'b array Sourceval (and*) : 'a array -> 'b array -> ('a * 'b) array