Module CCApp_parse.Str

module Str: S  with type source = string

type source 
Source of characters
val parse : source ->
'a CCApp_parse.t -> ('a, CCApp_parse.error) CCApp_parse.result
Parse the given source using the parser, and returns the parsed value.
val parse' : source -> 'a CCApp_parse.t -> ('a, string) CCApp_parse.result
Same as CCApp_parse.S.parse, but returns a user-friendly string in case of failure
val parse_exn : source -> 'a CCApp_parse.t -> 'a
Unsafe version of CCApp_parse.S.parse.
Raises Error if parsing fails