@brief Access the first element (front of queue) @return Reference to the front element @note Undefined behavior if queue is empty
| 62 | /// @return Reference to the front element |
| 63 | /// @note Undefined behavior if queue is empty |
| 64 | reference front() { |
| 65 | return mContainer.front(); |
| 66 | } |
| 67 | |
| 68 | /// @brief Access the first element (front of queue) - const version |
| 69 | /// @return Const reference to the front element |
no outgoing calls