* @brief Returns the internal counter's maximum possible value, which in this implementation is equal to `LeastMaxValue`. * * @return The internal counter's maximum possible value. */
| 144 | * @return The internal counter's maximum possible value. |
| 145 | */ |
| 146 | [[nodiscard]] static constexpr std::ptrdiff_t max() noexcept |
| 147 | { |
| 148 | return LeastMaxValue; |
| 149 | } |
| 150 | |
| 151 | /** |
| 152 | * @brief Atomically decrements the internal counter by 1 if it is greater than 0; otherwise blocks until it is greater than 0 and can successfully decrement the internal counter. |
nothing calls this directly
no outgoing calls
no test coverage detected