| 26 | string_t(const char* value, uint64_t length); |
| 27 | |
| 28 | static bool isShortString(uint32_t len) { return len <= SHORT_STR_LENGTH; } |
| 29 | |
| 30 | const uint8_t* getData() const { |
| 31 | return isShortString(len) ? prefix : reinterpret_cast<uint8_t*>(overflowPtr); |
no outgoing calls
no test coverage detected