Module B00_serialk_json.Json
type mem = (string * loc) * tand t = [ | `A of t list * loc| `Bool of bool * loc| `Float of float * loc| `Null of loc| `O of mem list * loc| `String of string * loc
]val mem : string -> t -> memval to_null : t -> (unit, string) resultval to_bool : t -> (bool, string) resultval to_float : t -> (float, string) resultval to_array : t -> (t list, string) resultval get_float : t -> floatval get_string : t -> stringval get_array : t -> t listval get_obj : t -> mem listval to_string : t -> string