jsonaf.kernel
Jsonaf_kernel
jsonaf
module Conv : sig ... end
Utility Module for Jsonaf_kernel Conversions
module Expert : sig ... end
The expert type and functions abstract over the type of `Number, so one could build a parser that worked specifically for, say, float ts or Bigdecimal.t ts instead of using string as an intermediate type.
`Number
float t
Bigdecimal.t t
module Jsonafable : sig ... end
type t = [
| `Null
| `False
| `True
| `String of string
| `Number of string
| `Object of (string * t) list
| `Array of t list
]
module Parser : sig ... end
module Serializer : sig ... end