package jsonaf

  1. Overview
  2. Docs

Source file type.ml

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
OCaml

Innovation. Community. Security.