= 1024" x-on:close-sidebar="sidebar=window.innerWidth >= 1024 && true">
Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
msgpack library for OCaml
1.7 — homepage
Msgpck
val size : t -> int
size msg
is the size in bytes of the MessagePack serialization of message msg
.
val pp : Format.formatter -> t -> unit
val show : t -> string
Conversion functions OCaml -> MessagePack
val of_nil : t
val of_bool : bool -> t
val of_int : int -> t
val of_uint32 : int32 -> t
val of_int32 : int32 -> t
val of_uint64 : int64 -> t
val of_int64 : int64 -> t
val of_float32 : int32 -> t
val of_float : float -> t
val of_string : string -> t
val of_bytes : string -> t
val of_ext : int -> string -> t
Conversion functions MessagePack -> OCaml
val to_nil : t -> unit
val to_bool : t -> bool
val to_int : t -> int
val to_uint32 : t -> int32
val to_int32 : t -> int32
val to_uint64 : t -> int64
val to_int64 : t -> int64
val to_float32 : t -> int32
val to_float : t -> float
val to_string : t -> string
val to_bytes : t -> string
val to_ext : t -> int * string
Output signature for functors defined below
module type S = sig ... end
MessagePack library decoding from strings and writing in Buffers.
MessagePack library decoding from bytes and writing in Buffers.
MessagePack library decoding from strings and writing in bytes.