returns the end of the string (pointer is past the last character)
| 176 | |
| 177 | // returns the end of the string (pointer is past the last character) |
| 178 | __fi const char* end_ptr() const { return m_buffer + m_length; } |
| 179 | |
| 180 | // STL adapters |
| 181 | __fi void push_back(value_type val) { append(val); } |
no outgoing calls
no test coverage detected