| 18 | } |
| 19 | |
| 20 | String fromHexString(std::string_view c) { |
| 21 | String to; |
| 22 | boost::algorithm::unhex(std::begin(c), std::end(c), std::back_inserter(to)); |
| 23 | return to; |
| 24 | } |
| 25 | |
| 26 | void encodeOrderPreservedString(String &buf, std::string_view key, bool mayContainNull) { |
| 27 | if (key.empty()) { |
no test coverage detected