Module CCParse.Infix
val (>>=) : 'a t -> ('a -> 'b t) -> 'b tMonadic bind.
p >>= fresults in a new parser which behaves aspthen, in case of success, appliesfto the result.
val (<*) : 'a t -> _ t -> 'a ta <* bparsesaintox, parsesband ignores its result, and returnsx.
val (*>) : _ t -> 'a t -> 'a ta *> bparsesa, then parsesbintox, and returnsx. The results ofais ignored.