package protocell

  1. Overview
  2. Docs
type t =
  1. | Null_value of Null_value.t
  2. | Number_value of float
  3. | String_value of string
  4. | Bool_value of bool
  5. | Struct_value of Struct'.t
  6. | List_value of List_value.t
val equal : t -> t -> Ppx_deriving_runtime.bool
val pp : Ppx_deriving_runtime.Format.formatter -> t -> Ppx_deriving_runtime.unit
val null_value : Null_value.t -> t
val number_value : float -> t
val string_value : string -> t
val bool_value : bool -> t
val struct_value : Struct'.t -> t
val list_value : List_value.t -> t