package dune

  1. Overview
  2. Docs
type t =
  1. | Unit
  2. | Int of int
  3. | Bool of bool
  4. | String of string
  5. | Bytes of bytes
  6. | Char of char
  7. | Float of float
  8. | Option of t option
  9. | List of t list
  10. | Array of t array
  11. | Tuple of t list
  12. | Record of (string * t) list
  13. | Variant of string * t list
  14. | Map of (t * t) list
  15. | Set of t list
module Encoder : sig ... end
val pp : Format.formatter -> t -> unit
val opaque : t
val to_sexp : t Sexp.Encoder.t
OCaml

Innovation. Community. Security.