CCRAL.Infix
val (@+) : 'a -> 'a t -> 'a t
Cons (alias to cons).
cons
val (>>=) : 'a t -> ('a -> 'b t) -> 'b t
Alias to flat_map.
flat_map
val (>|=) : 'a t -> ('a -> 'b) -> 'b t
Alias to map.
map
val (<*>) : ('a -> 'b) t -> 'a t -> 'b t
Alias to app.
app
val (--) : int -> int -> int t
Alias to range.
range
val (--^) : int -> int -> int t
a --^ b is the integer range from a to b, where b is excluded.
a --^ b
a
b