package msgpack

  1. Overview
  2. Docs
Msgpack library for OCaml

Install

Dune Dependency

Authors

Maintainers

Sources

1.3.0.tar.gz
sha256=81ff52b10beba9a99c51211925d3452e0f5239e595d4f49adc3b9944d8bc00cf
md5=09d28af795069e45b3e8209a87897ce1

doc/msgpack/Msgpack/index.html

Module Msgpack

MessagePack for OCaml

type t = [
  1. | `Bool of bool
  2. | `Nil
  3. | `PFixnum of int
  4. | `NFixnum of int
  5. | `Uint8 of int
  6. | `Uint16 of int
  7. | `Uint32 of int64
  8. | `Uint64 of Big_int.big_int
  9. | `Int8 of int
  10. | `Int16 of int
  11. | `Int32 of int32
  12. | `Int64 of int64
  13. | `Float of float
  14. | `Double of float
  15. | `FixRaw of char list
  16. | `Raw16 of char list
  17. | `Raw32 of char list
  18. | `FixArray of t list
  19. | `Array16 of t list
  20. | `Array32 of t list
  21. | `FixMap of (t * t) list
  22. | `Map16 of (t * t) list
  23. | `Map32 of (t * t) list
]

MesagePack object. See also MessagePack specification.

module Serialize : sig ... end

MessagePack Serializer

module MsgpackConfig : sig ... end
module MsgpackCore : sig ... end
module Pack : sig ... end

Conversion MessagePack object between OCaml and Coq.

OCaml

Innovation. Community. Security.