package edn

  1. Overview
  2. Docs

Source file edn_common.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
type value = [
  | `Assoc of (value * value) list
  | `List of value list
  | `Vector of value list
  | `Set of value 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 * value) ]

exception Error of string