Capacity
| 237 | |
| 238 | // Capacity |
| 239 | size_type size() const FL_NOEXCEPT { return mSize; } |
| 240 | bool empty() const FL_NOEXCEPT { return mSize == 0; } |
| 241 | size_type capacity() const FL_NOEXCEPT { return mData.capacity(); } |
| 242 | size_type max_size() const FL_NOEXCEPT { return mData.max_size(); } |
no outgoing calls
no test coverage detected