package liquidsoap-lang

  1. Overview
  2. Docs
Liquidsoap language library

Install

dune-project
 Dependency

Authors

Maintainers

Sources

liquidsoap-2.2.3.tar.gz
md5=988ffcff06b32998c0810cc667247121
sha512=5e256f5413e933eecffa6a53ef17a0f586df1dcbb18de70c627b344f21d6f2c92ea770e4d9a416ac0a1aa4d21ce8872849cbe81c1ba6d9acfb973913a8dbb36c

doc/src/liquidsoap-lang/json_base.ml.html

Source file json_base.ml

1
2
3
4
5
6
7
8
9
10
11
12
type parse_error = { pos : Pos.t; message : string }

exception Parse_error of parse_error

type t =
  [ `Assoc of (string * t) list
  | `Tuple of t list
  | `String of string
  | `Bool of bool
  | `Float of float
  | `Int of int
  | `Null ]
OCaml

Innovation. Community. Security.