* Append the given string's length (BE uint64) and the string itself */
| 130 | * Append the given string's length (BE uint64) and the string itself |
| 131 | */ |
| 132 | static inline void PackString(const String& string, std::string& builder) |
| 133 | { |
| 134 | PackUInt64BE(string.GetLength(), builder); |
| 135 | builder += string.GetData(); |
| 136 | } |
| 137 | |
| 138 | /** |
| 139 | * Append the given array |
no test coverage detected