| 39 | constexpr unsigned char CUSTOM_COMPACT_FLAG = 0x80; // 0b1SSSSTTT. SSSS = dataSize, TTT = (typeName size - 1) |
| 40 | |
| 41 | static void appendType(BinaryData& out, SerializedType type) |
| 42 | { |
| 43 | out.push_back(static_cast<char>(type)); |
| 44 | } |
| 45 | |
| 46 | template <typename T> |
| 47 | static void appendValue(BinaryData& out, T v) |
no outgoing calls
no test coverage detected