| 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); |
| 32 | } |
| 33 | |
| 34 | uint8_t* getDataUnsafe() { |
| 35 | return isShortString(len) ? prefix : reinterpret_cast<uint8_t*>(overflowPtr); |
nothing calls this directly
no test coverage detected