Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
module List : sig ... end
type read_value_error = [
| `Error of error_location * Jsone.error
| `Unexpected of
[ `Lexeme of error_location * Jsone.lexeme * string | `End_of_input ]
]
val json_of_src : Uutfe.src -> (value, [> read_value_error ]) result
exception Parse_error of value * string
val read_error_description :
[< `Error of
error_location * Jsone.error & 'a
* [< `Expected of
[< `Aval of bool
| `Comment
| `Eoi
| `Json
| `Name
| `Name_sep
| `Omem of bool
| `Value ]
| `Illegal_BOM
| `Illegal_bytes of string
| `Illegal_escape of
[< `Lone_hi_surrogate of int
| `Lone_lo_surrogate of int
| `Not_esc_uchar of Uchar.t
| `Not_hex_uchar of Uchar.t
| `Not_lo_surrogate of int ]
| `Illegal_literal of string
| `Illegal_number of string
| `Illegal_string_uchar of Uchar.t
| `Unclosed of
[< `As | `Comment | `Os | `String ] ]
| `Not_a_t of value & 'b
| `Unexpected of
[ `End_of_input | `Lexeme of error_location * Jsone.lexeme * string ] &
[< `End_of_input
| `Lexeme of 'c * 'd * string ] ] ->
string
val read_error_location :
[< `Error of error_location * Jsone.error & error_location * 'a
| `Not_a_t of value & 'b
| `Unexpected of
[ `End_of_input | `Lexeme of error_location * Jsone.lexeme * string ] &
[< `End_of_input
| `Lexeme of error_location * 'c * 'd ] ] ->
error_location option
val value_from_src_result : Uutfe.src -> (value, [> read_value_error ]) result
val ensure_document_result : value -> ([> t ], [> read_error ]) result
val get_unit : value -> unit
val get_bool : value -> bool
val get_string : value -> string
val get_int : value -> int
val get_int32 : value -> int32
val get_int64 : value -> int64
val get_float : value -> float
val get_strings : value -> string list
val decode_string_exn : value -> string
val of_sexp :
Sexplib0.Sexp.t ->
[> `A of 'a list
| `O of (string * [> `String of string ]) list
| `String of string ] as 'a
val value_of_sexp :
Sexplib0.Sexp.t ->
[> `A of 'a list
| `O of (string * [> `String of string ]) list
| `String of string ] as 'a
val t_of_sexp :
Sexplib0.Sexp.t ->
[> `A of
[> `A of 'a
| `O of (string * [> `String of string ]) list
| `String of string ]
list as 'a
| `O of (string * [> `String of string ]) list ]
val to_sexp : value -> Sexplib0.Sexp.t
val sexp_of_value : value -> Sexplib0.Sexp.t
val sexp_of_t : t -> Sexplib0.Sexp.t