@brief Remove the front element from the queue @note Undefined behavior if queue is empty
| 121 | /// @brief Remove the front element from the queue |
| 122 | /// @note Undefined behavior if queue is empty |
| 123 | void pop() { |
| 124 | mContainer.pop_front(); |
| 125 | } |
| 126 | |
| 127 | /// @brief Swap the contents with another queue |
| 128 | /// @param other Queue to swap with |