Module Parsexp.Single_and_positions
type parsed_value= Parsexp__.Import.Ppx_sexp_conv_lib.Sexp.t * Positions.tValues produced by the parser
module State : Parsexp__.Parsexp_intf.Parser_statemodule Stack : Parsexp__.Parsexp_intf.Parser_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
module Error : sig ... endval parse_string : string -> (parsed_value, Error.t) Stdlib.resultval parse_string_exn : string -> parsed_value