* @brief Get the capacity of the queue * * @return constexpr size_t The maximum number of elements */
| 118 | * @return constexpr size_t The maximum number of elements |
| 119 | */ |
| 120 | [[nodiscard]] static constexpr auto max_size() noexcept -> size_t { |
| 121 | return Capacity; |
| 122 | } |
| 123 | |
| 124 | /** |
| 125 | * @brief Get an approximate size of the queue |