Lines Matching refs:rhs
55 bool operator<(const ByteArray& rhs) const {
56 return bytes < rhs.bytes;
58 bool operator==(const ByteArray& rhs) const {
59 return bytes == rhs.bytes;
61 bool operator>(const ByteArray& rhs) const {
62 return (rhs < *this);
64 bool operator<=(const ByteArray& rhs) const {
65 return !(*this > rhs);
67 bool operator>=(const ByteArray& rhs) const {
68 return !(*this < rhs);
70 bool operator!=(const ByteArray& rhs) const {
71 return !(*this == rhs);