| 362 | } |
| 363 | |
| 364 | Expected<LenStrDecodeResult> lenStrDecode(const std::string& str) { |
| 365 | return lenStrDecode(str.c_str(), str.size()); |
| 366 | } |
| 367 | |
| 368 | Expected<LenStrDecodeResult> lenStrDecode(const char* ptr, size_t max_size) { |
| 369 | auto eSize = varintDecodeFwd(reinterpret_cast<const uint8_t*>(ptr), max_size); |