Searched defs:SomeIntComparable (Results 1 – 1 of 1) sorted by relevance
20 struct SomeIntComparable { struct24 constexpr SomeIntComparable() : value_(SomeInt(10)) {} in SomeIntComparable() function40 constexpr SomeIntComparable& operator++() { ++value_; return *this; } in operator ++() argument41 constexpr SomeIntComparable operator++(int) { auto tmp = *this; ++value_; return tmp; } in operator ++() argument42 constexpr SomeIntComparable operator--() { --value_; return *this; } in operator --() argument