Lines Matching full:rhs
657 bool operator<(const string& lhs, const string& rhs) {
658 return lhs.compare(rhs) < 0;
661 bool operator<=(const string& lhs, const string& rhs) {
662 return lhs.compare(rhs) <= 0;
665 bool operator>(const string& lhs, const string& rhs) {
666 return lhs.compare(rhs) > 0;
669 bool operator>=(const string& lhs, const string& rhs) {
670 return lhs.compare(rhs) >= 0;
673 void swap(string& lhs, string& rhs) {
674 lhs.swap(rhs);