* @brief Checks whether the queue is empty. */
| 141 | * @brief Checks whether the queue is empty. |
| 142 | */ |
| 143 | [[nodiscard]] bool empty() const { return m_size == 0; } |
| 144 | |
| 145 | /** |
| 146 | * @brief Returns the storage index of the front (oldest) element. Pair with |