Lines Matching refs:rhs
57 bool operator<(const Address& rhs) const {
58 return address < rhs.address;
60 bool operator==(const Address& rhs) const {
61 return address == rhs.address;
63 bool operator>(const Address& rhs) const {
64 return (rhs < *this);
66 bool operator<=(const Address& rhs) const {
67 return !(*this > rhs);
69 bool operator>=(const Address& rhs) const {
70 return !(*this < rhs);
72 bool operator!=(const Address& rhs) const {
73 return !(*this == rhs);