| 137 | size_ -= offs; |
| 138 | } |
| 139 | constexpr void pop_front() noexcept { |
| 140 | remove_front(1u); |
| 141 | } |
| 142 | constexpr void remove_back(size_type count) noexcept { |
| 143 | size_ -= (count < size()) ? count : size(); |
| 144 | } |
no outgoing calls
no test coverage detected