| 2308 | int size() const { return Buf.Size ? Buf.Size - 1 : 0; } |
| 2309 | bool empty() const { return Buf.Size <= 1; } |
| 2310 | void clear() { Buf.clear(); } |
| 2311 | void reserve(int capacity) { Buf.reserve(capacity); } |
| 2312 | const char* c_str() const { return Buf.Data ? Buf.Data : EmptyString; } |
| 2313 | IMGUI_API void append(const char* str, const char* str_end = NULL); |
no outgoing calls
no test coverage detected