doc for infix functions of Gen

This commit is contained in:
Simon Cruanes 2013-04-03 00:14:48 +02:00
parent 92a04ac727
commit 1e35fc7ecb

View file

@ -323,12 +323,16 @@ val pp : ?start:string -> ?stop:string -> ?sep:string -> ?horizontal:bool ->
module Infix : sig
val (@@) : 'a t -> 'a t -> 'a t
(** Synonym for {! append} *)
val (>>=) : 'a t -> ('a -> 'b t) -> 'b t
(** Synonym for {! flatMap}, with arguments reversed *)
val (--) : int -> int -> int t
(** Synonym for {! int_range} *)
val (|>) : 'a -> ('a -> 'b) -> 'b
(** Function application, reversed *)
end
val (@@) : 'a t -> 'a t -> 'a t