json

Documentation for json.

Types to decode JSON and JSON-like file formats into a pattern tree

Types

hex::type::Bjdata

Type representing Bjdata data

  • <Size>: size of the data
struct Bjdata<auto Size> { ... };

hex::type::Bson

Type representing Bson data

  • <Size>: size of the data
struct Bson<auto Size> { ... };

hex::type::Cbor

Type representing Cbor data

  • <Size>: size of the data
struct Cbor<auto Size> { ... };

hex::type::Json

Type representing a JSON string

  • <Size>: size of the string
struct Json<auto Size> { ... };

hex::type::Msgpack

Type representing Msgpack data

  • <Size>: size of the data
struct Msgpack<auto Size> { ... };

hex::type::Ubjson

Type representing Ubjson data

  • <Size>: size of the data
struct Ubjson<auto Size> { ... };