| 20 | void grow(size newLength) FL_NOEXCEPT; |
| 21 | bool hasCapacity(size newLength) const FL_NOEXCEPT { return newLength + 1 <= mCapacity; } |
| 22 | const char *data() const FL_NOEXCEPT { return mData; } |
| 23 | char *data() FL_NOEXCEPT { return mData; } |
| 24 | size length() const FL_NOEXCEPT { return mLength; } |
| 25 | size capacity() const FL_NOEXCEPT { return mCapacity; } |
no outgoing calls
no test coverage detected