package bolt

  1. Overview
  2. Docs
type value =
  1. | Identifier of string
  2. | Integer of int
  3. | Float of float
  4. | String of string
  5. | And of value * value
  6. | Or of value * value
type section = {
  1. name : Name.t;
  2. elements : (string * value) list;
}
type t = section list
exception Exception of int * string