package jsonaf

  1. Overview
  2. Docs
A library for parsing, manipulating, and serializing data structured as JSON

Install

Dune Dependency

Authors

Maintainers

Sources

v0.17.0.tar.gz
sha256=55d5a46e69891b6753135491b052b4cbb886a76f576099120911984b098806ce

doc/src/jsonaf.kernel/type.ml.html

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.