Edntype t = [ | `Assoc of (t * t) list |
| `List of t list |
| `Vector of t list |
| `Set of t list |
| `Null |
| `Bool of bool |
| `String of string |
| `Char of string |
| `Symbol of string option * string |
| `Keyword of string option * string |
| `Int of int |
| `BigInt of string |
| `Float of float |
| `Decimal of string |
| `Tag of string option * string * t |
]val to_string : t -> stringval from_string : string -> tval from_channel : Stdlib.in_channel -> tval seq_from_channel : Stdlib.in_channel -> t Stdlib.Seq.tmodule Errors : sig ... endmodule Json : sig ... endmodule Util : sig ... end