Lines Matching refs:lhs
1056 void swap(concurrent_vector<T, Allocator> &lhs, in swap() argument
1059 lhs.swap(rhs); in swap()
1063 bool operator==(const concurrent_vector<T, Allocator> &lhs,
1066 return lhs.size() == rhs.size() && std::equal(lhs.begin(), lhs.end(), rhs.begin());
1071 bool operator!=(const concurrent_vector<T, Allocator> &lhs,
1074 return !(lhs == rhs);
1081 operator<=>(const concurrent_vector<T, Allocator> &lhs,
1084 return std::lexicographical_compare_three_way(lhs.begin(), lhs.end(),
1092 bool operator<(const concurrent_vector<T, Allocator> &lhs,
1095 return std::lexicographical_compare(lhs.begin(), lhs.end(), rhs.begin(), rhs.end());
1099 bool operator<=(const concurrent_vector<T, Allocator> &lhs,
1102 return !(rhs < lhs);
1106 bool operator>(const concurrent_vector<T, Allocator> &lhs,
1109 return rhs < lhs;
1113 bool operator>=(const concurrent_vector<T, Allocator> &lhs,
1116 return !(lhs < rhs);