<!-- description --> @brief Returns the number of elements in the queue <!-- inputs/outputs --> @return Returns the number of elements in the queue
| 178 | /// @return Returns the number of elements in the queue |
| 179 | /// |
| 180 | [[nodiscard]] static constexpr auto |
| 181 | size() noexcept -> size_type |
| 182 | { |
| 183 | // ensures(N.is_valid_and_checked()); |
| 184 | return size_type{N}; |
| 185 | } |
| 186 | }; |
| 187 | } |
| 188 |
nothing calls this directly
no outgoing calls
no test coverage detected