Returns the number of elements in the deque. Note that size() == 0 is not mean that the deque is empty because combining record can be in process. To check emptiness use \ref empty function. */
| 354 | To check emptiness use \ref empty function. |
| 355 | */ |
| 356 | size_t size() const |
| 357 | { |
| 358 | return m_Deque.size(); |
| 359 | } |
| 360 | |
| 361 | /// Checks if the deque is empty |
| 362 | /** |