| 32 | } |
| 33 | |
| 34 | uint8_t* getDataUnsafe() { |
| 35 | return isShortString(len) ? prefix : reinterpret_cast<uint8_t*>(overflowPtr); |
| 36 | } |
| 37 | |
| 38 | // These functions do *NOT* allocate/resize the overflow buffer, it only copies the content and |
| 39 | // set the length. |
nothing calls this directly
no test coverage detected