Test whether the contents of this deque is empty. */
| 308 | |
| 309 | /** Test whether the contents of this deque is empty. */ |
| 310 | bool empty() const noexcept { return m_size == 0; } |
| 311 | /** Get the number of elements in this deque. */ |
| 312 | size_t size() const noexcept { return m_size; } |
| 313 | /** Get the capacity of this deque (maximum size it can have without reallocating). */ |
no outgoing calls
no test coverage detected