@brief Access the last element (back of queue) @return Reference to the back element @note Undefined behavior if queue is empty
| 76 | /// @return Reference to the back element |
| 77 | /// @note Undefined behavior if queue is empty |
| 78 | reference back() { |
| 79 | return mContainer.back(); |
| 80 | } |
| 81 | |
| 82 | /// @brief Access the last element (back of queue) - const version |
| 83 | /// @return Const reference to the back element |
no outgoing calls