package parsexp

  1. Overview
  2. Docs
type 'a single_or_many = 'a
val parse_string : Base.string -> (Base.Sexp.t -> 'a) -> ('a single_or_many, Conv_error.t) Base.Result.t
val parse_string_exn : Base.string -> (Base.Sexp.t -> 'a) -> 'a single_or_many

Convenience function for merging parsing and conversion errors.

For instance if you have a load function as follow:

val load : string -> (Sexp.t list * Positions.t, Parse_error.t) Result.t

then you can create a load_conv function as follow:

let load_conv : string -> (Sexp.t -> 'a) -> ('a list, Conv_error.t) Result.t
  = fun filename f -> conv_combine (load filename) f
OCaml

Innovation. Community. Security.