Sourcetype tagged_t = | JSONFalse| JSONTrue| JSONNull| JSONString of string| JSONNumber of float| JSONObject of t Dict.t| JSONArray of t array
Sourceval decodeString : 'a -> 'b Sourceval decodeNumber : 'a -> 'b Sourceval decodeObject : 'a -> 'b Sourceval decodeArray : 'a -> 'b Sourceval decodeNull : 'a -> 'b Sourceval stringifyAny : 'a -> 'b Sourceval stringArray : 'a -> 'b Sourceval numberArray : 'a -> 'b Sourceval booleanArray : 'a -> 'b Sourceval objectArray : 'a -> 'b Sourceval stringify : 'a -> 'b Sourceval stringifyWithSpace : 'a -> 'b Sourceval serializeExn : t -> string Sourceval deserializeUnsafe : string -> 'a