| 300 | } |
| 301 | |
| 302 | [[nodiscard]] constexpr FilteredIterator operator--(int) { |
| 303 | FilteredIterator cp = *this; |
| 304 | --*this; |
| 305 | return cp; |
| 306 | } |
| 307 | |
| 308 | [[nodiscard]] friend constexpr bool operator==(const FilteredIterator& lhs, const FilteredIterator& rhs) { return lhs.current == rhs.current; } |
| 309 |
nothing calls this directly
no outgoing calls
no test coverage detected