enum class Type
Description
MessagePack types as defined in the standard, with the exception of Integer being divided into a signed Int and unsigned UInt variant in order to map directly to C++ types. The types map onto corresponding union members of the \c Object struct.
Declared at: llvm/include/llvm/BinaryFormat/MsgPackReader.h:48
Enumerators
Name | Value | Comment |
---|---|---|
Int | 0 | |
UInt | 1 | |
Nil | 2 | |
Boolean | 3 | |
Float | 4 | |
String | 5 | |
Binary | 6 | |
Array | 7 | |
Map | 8 | |
Extension | 9 | |
Empty | 10 |