Lines Matching refs:rhs
69 bool operator<(const Address& rhs) const {
70 return address < rhs.address;
72 bool operator==(const Address& rhs) const {
73 return address == rhs.address;
75 bool operator>(const Address& rhs) const {
76 return (rhs < *this);
78 bool operator<=(const Address& rhs) const {
79 return !(*this > rhs);
81 bool operator>=(const Address& rhs) const {
82 return !(*this < rhs);
84 bool operator!=(const Address& rhs) const {
85 return !(*this == rhs);