Edn
type 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 -> string
val from_string : string -> t
val from_channel : Stdlib.in_channel -> t
val seq_from_channel : Stdlib.in_channel -> t Stdlib.Seq.t
module Errors : sig ... end
module Json : sig ... end
module Util : sig ... end