Searched defs:WrappedInt (Results 1 – 1 of 1) sorted by relevance
78 struct WrappedInt { in TEST() struct79 WrappedInt(int value) : value(value) {} in TEST() argument80 bool operator<(const WrappedInt& other) { return value < other.value; } in TEST()81 bool operator>(const WrappedInt& other) { return value > other.value; } in TEST()82 bool operator<=(const WrappedInt& other) { return value <= other.value; } in TEST()83 bool operator>=(const WrappedInt& other) { return value >= other.value; } in TEST()84 bool operator==(const WrappedInt& other) { return value == other.value; } in TEST()85 int value; in TEST()