* @brief Returns the storage index of the front (oldest) element. Pair with * `nextIndex()` (or `storageMask()`) to walk the ring without modulo. */
| 147 | * `nextIndex()` (or `storageMask()`) to walk the ring without modulo. |
| 148 | */ |
| 149 | [[nodiscard]] std::size_t frontIndex() const { return m_start; } |
| 150 | |
| 151 | /** |
| 152 | * @brief Returns `(idx + 1) & storageMask` -- the next storage position when |
no outgoing calls
no test coverage detected