MCPcopy Create free account
hub / github.com/Neargye/magic_enum / operator--

Function operator--

include/magic_enum/magic_enum_containers.hpp:302–306  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected