CCOrd.Infix
val (<?>) : int -> ('a t * 'a * 'a) -> int
c1 <?> (ord, x, y) returns the same as c1 if c1 is not 0; otherwise it uses ord to compare the two values x and y, of type 'a.
c1 <?> (ord, x, y)
c1
0
ord
x
y
'a
val (>|=) : 'b t -> ('a -> 'b) -> 'a t
Infix equivalent of map.
map