package stdune

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Stdune.JsonSource

Sourcetype t = [
  1. | `Int of int
  2. | `Float of float
  3. | `String of string
  4. | `List of t list
  5. | `Bool of bool
  6. | `Assoc of (string * t) list
  7. | `Null
]
Sourceval to_string : t -> string
Sourceval string : string -> t
Sourceval assoc : (string * t) list -> t
Sourceval list : t list -> t
Sourceval int : int -> t
Sourceval float : float -> t
Sourceval bool : bool -> t