Module Parsexp
include Parsexp__.Parsexp_intf.Parsexp
module Positions : sig ... endCompact set of positions
module Cst : sig ... endConcrete syntax tree of s-expressions
module Parse_error : sig ... endmodule type Parser : Parsexp__.Parsexp_intf.Parser with module Error := Parse_errormodule type Eager_parser = Parsexp__.Parsexp_intf.Eager_parserexceptionParse_error of Parse_error.tException raised in case of a parsing error
module Single : Parser with type parsed_value = Parsexp__.Import.Ppx_sexp_conv_lib.Sexp.tmodule Many : Parser with type parsed_value = Parsexp__.Import.Ppx_sexp_conv_lib.Sexp.t listmodule Eager : Eager_parser with type parsed_value = Parsexp__.Import.Ppx_sexp_conv_lib.Sexp.tmodule Single_and_positions : Parser with type parsed_value = Parsexp__.Import.Ppx_sexp_conv_lib.Sexp.t * Positions.tmodule Many_and_positions : Parser with type parsed_value = Parsexp__.Import.Ppx_sexp_conv_lib.Sexp.t list * Positions.tmodule Eager_and_positions : Eager_parser with type parsed_value = Parsexp__.Import.Ppx_sexp_conv_lib.Sexp.t * Positions.tmodule Single_just_positions : Parser with type parsed_value = Positions.tmodule Many_just_positions : Parser with type parsed_value = Positions.tmodule Eager_just_positions : Eager_parser with type parsed_value = Positions.tmodule Many_cst : Parser with type parsed_value = Cst.t_or_comment listmodule Eager_cst : Eager_parser with type parsed_value = Cst.t_or_commentmodule Of_sexp_error : sig ... endexceptionOf_sexp_error of Of_sexp_error.tException raised in case of a conversion error
module Conv_error : sig ... endmodule type Conv : Parsexp__.Parsexp_intf.Conv with module Parse_error := Parse_error with module Of_sexp_error := Of_sexp_error with module Conv_error := Conv_errortype 'a id= 'atype sexp_list= Parsexp__.Import.Ppx_sexp_conv_lib.Sexp.t list
module Conv_single : Conv with type 'a res := 'a id and type parsed_sexp := Parsexp__.Import.Ppx_sexp_conv_lib.Sexp.t and type chunk_to_conv := Parsexp__.Import.Ppx_sexp_conv_lib.Sexp.tmodule Conv_many : Conv with type 'a res := 'a list and type parsed_sexp := sexp_list and type chunk_to_conv := Parsexp__.Import.Ppx_sexp_conv_lib.Sexp.tmodule Conv_many_at_once : Conv with type 'a res := 'a id and type parsed_sexp := sexp_list and type chunk_to_conv := sexp_listmodule Private : sig ... end