type.ml
jsonaf
jsonaf.kernel
1 2 3 4 5 6 7 8 9 10 type t = [ `Null | `False | `True | `String of string | `Number of string | `Object of (string * t) list | `Array of t list ] constraint t = string Expert.t
1 2 3 4 5 6 7 8 9 10
type t = [ `Null | `False | `True | `String of string | `Number of string | `Object of (string * t) list | `Array of t list ] constraint t = string Expert.t