Documentation ¶
Index ¶
Constants ¶
View Source
const ( FixMap = 0x80 FixArray = 0x90 FixStr = 0xA0 NilCode = 0xC0 False = 0xC2 True = 0xC3 Bin8 = 0xC4 Bin16 = 0xC5 Bin32 = 0xC6 Ext8 = 0xC7 Ext16 = 0xC8 Ext32 = 0xC9 Float32 = 0xCA Float64 = 0xCB Uint8 = 0xCC Uint16 = 0xCD Uint32 = 0xCE Uint64 = 0xCF Int8 = 0xD0 Int16 = 0xD1 Int32 = 0xD2 Int64 = 0xD3 FixExt1 = 0xD4 FixExt2 = 0xD5 FixExt4 = 0xD6 FixExt8 = 0xD7 FixExt16 = 0xD8 Str8 = 0xD9 Str16 = 0xDA Str32 = 0xDB Array16 = 0xDC Array32 = 0xDD Map16 = 0xDE Map32 = 0xDF )
MessagePack types
View Source
const ( NegativeFixIntMin = -32 Max5Bit = 0b00011111 )
General constants
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Array ¶
type Array []utils.MessagePackType
Go types
type Binary ¶
type Binary []byte
Go types
type Boolean ¶
type Boolean bool
Go types
type External ¶
External MessagePack type
type Float ¶
type Float float64
Go types
type Map ¶
type Map []MessagePackMap
Go types
type MessagePackMap ¶
type MessagePackMap struct { Key utils.MessagePackType Value utils.MessagePackType }
MessagePackMap is a single Key-Value association
type String ¶
type String string
Go types
Click to show internal directories.
Click to hide internal directories.