Module Parsexp.Many_cst
type parsed_value= Cst.t_or_comment listValues produced by the parser
module State : Parsexp__.Parser_intf.Statemodule Stack : Parsexp__.Parser_intf.Stackval feed : State.t -> char -> Stack.t -> Stack.tFeed one character to the parser. In case of error, it raises
Parse_error
val feed_eoi : State.t -> Stack.t -> parsed_valueInstruct the parser that the end of input was reached. In case of error, it raises
Parse_error
Convenience functions
High-level functions
val parse_string : string -> (parsed_value, Parse_error.t) Stdlib.resultval parse_string_exn : string -> parsed_value