Capacity
| 94 | |
| 95 | // Capacity |
| 96 | size_type size() const FL_NOEXCEPT { return mData.size(); } |
| 97 | bool empty() const FL_NOEXCEPT { return mData.empty(); } |
| 98 | size_type capacity() const FL_NOEXCEPT { return mData.capacity(); } |
| 99 | size_type max_size() const FL_NOEXCEPT { return mData.max_size(); } |
no outgoing calls
no test coverage detected