package vcaml

  1. Overview
  2. Docs
module Message : module type of Message
module Internal : sig ... end
module Custom : sig ... end
type t = Message.t =
  1. | Nil
  2. | Integer of Base.int
  3. | Int64 of Base.Int64.t
  4. | UInt64 of Base.Int64.t
  5. | Boolean of Base.bool
  6. | Floating of Base.float
  7. | Array of t Base.list
  8. | Map of (t * t) Base.list
  9. | String of Base.string
  10. | Binary of Base.Bytes.t
  11. | Extension of Custom.t
include Ppx_sexp_conv_lib.Sexpable.S with type t := t
val t_of_sexp : Sexplib0.Sexp.t -> t
val sexp_of_t : t -> Sexplib0.Sexp.t
val equal : t -> t -> Base.bool
val t_of_string : Base.string -> t Base.Or_error.t
val t_of_string_exn : Base.string -> t
val string_of_t_exn : ?bufsize:Base.int -> t -> Base.string