Lines Matching refs:rhs
48 bool operator<(const SixBytes& rhs) const {
49 return (std::memcmp(six_bytes, rhs.six_bytes, sizeof(six_bytes)) < 0);
51 bool operator==(const SixBytes& rhs) const {
52 return (std::memcmp(six_bytes, rhs.six_bytes, sizeof(six_bytes)) == 0);
54 bool operator>(const SixBytes& rhs) const {
55 return (rhs < *this);
57 bool operator<=(const SixBytes& rhs) const {
58 return !(*this > rhs);
60 bool operator>=(const SixBytes& rhs) const {
61 return !(*this < rhs);
63 bool operator!=(const SixBytes& rhs) const {
64 return !(*this == rhs);