Functor CCApp_parse.MakeFromReader

module MakeFromReader (R : READER) : S  with type source = R.source
Parameters:
R : READER

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