package edn

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = [
  1. | `Assoc of (t * t) list
  2. | `List of t list
  3. | `Vector of t list
  4. | `Set of t list
  5. | `Null
  6. | `Bool of bool
  7. | `String of string
  8. | `Char of string
  9. | `Symbol of string option * string
  10. | `Keyword of string option * string
  11. | `Int of int
  12. | `BigInt of string
  13. | `Float of float
  14. | `Decimal of string
  15. | `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