val list : ?start:string ‑> ?stop:string ‑> ?sep:string ‑> 'a t ‑> 'a list t
list p parses a list of p, with the OCaml conventions for start token "", stop token "" and separator ";". Whitespace between items are skipped
list p
p
", stop token "
val int : int t
val word : string t
non empty string of alpha num, start with alpha
val pair : ?start:string ‑> ?stop:string ‑> ?sep:string ‑> 'a t ‑> 'b t ‑> ('a * 'b) t
Parse a pair using OCaml whitespace conventions. The default is "(a, b)".
val triple : ?start:string ‑> ?stop:string ‑> ?sep:string ‑> 'a t ‑> 'b t ‑> 'c t ‑> ('a * 'b * 'c) t
Parse a triple using OCaml whitespace conventions. The default is "(a, b, c)".