package parsexp_io

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
val load : (module Parsexp.Parser with type parsed_value = 'a) -> filename:string -> ('a, Parsexp.Parse_error.t) Stdlib.result
val load_exn : (module Parsexp.Parser with type parsed_value = 'a) -> filename:string -> 'a
type ('a, 'b) conv_mode =
  1. | Single : ('a, 'a) conv_mode
  2. | Many : ('a, 'a list) conv_mode
val load_conv : ('a, 'b) conv_mode -> filename:string -> (Base.Sexp.t -> 'a) -> ('b, Parsexp.Conv_error.t) Stdlib.result
val load_conv_exn : ('a, 'b) conv_mode -> filename:string -> (Base.Sexp.t -> 'a) -> 'b