operator==,!=,<,<=,>,>=,<=>(std::vector)
Defined in header <vector>
|
||
(1) | ||
template< class T, class Alloc > bool operator==( const std::vector<T, Alloc>& lhs, |
(until C++20) | |
template< class T, class Alloc > constexpr bool operator==( const std::vector<T, Alloc>& lhs, |
(since C++20) | |
template< class T, class Alloc > bool operator!=( const std::vector<T, Alloc>& lhs, |
(2) | (until C++20) |
template< class T, class Alloc > bool operator<( const std::vector<T, Alloc>& lhs, |
(3) | (until C++20) |
template< class T, class Alloc > bool operator<=( const std::vector<T, Alloc>& lhs, |
(4) | (until C++20) |
template< class T, class Alloc > bool operator>( const std::vector<T, Alloc>& lhs, |
(5) | (until C++20) |
template< class T, class Alloc > bool operator>=( const std::vector<T, Alloc>& lhs, |
(6) | (until C++20) |
template< class T, class Alloc > constexpr /* see below */ operator<=>( const std::vector<T, Alloc>& lhs, |
(7) | (since C++20) |
Compares the contents of two vector
s.
vector
s with a function object performing synthesized three-way comparison (see below). The return type is same as the result type of synthesized three-way comparison.
Given two const E lvalues lhs and rhs as left hand operand and right hand operand respectively (where E
is T
), synthesized three-way comparison is defined as:
- if std::three_way_comparable_with<E, E> is satisfied, equivalent to lhs <=> rhs;
- otherwise, if comparing two const E lvalues by operator< is well-formed and the result type satisfies
boolean-testable
, equivalent to
lhs < rhs ? std::weak_ordering::less : rhs < lhs ? std::weak_ordering::greater : std::weak_ordering::equivalent
- otherwise, synthesized three-way comparison is not defined, and operator<=> does not participate in overload resolution.
three_way_comparable_with
or boolean-testable
is satisfied but not modeled, or operator< is used but E
and <
do not establish a total order.
The |
(since C++20) |
Parameters
lhs, rhs | - | vector s whose contents to compare
|
-T must meet the requirements of EqualityComparable in order to use overloads (1,2).
| ||
-T must meet the requirements of LessThanComparable in order to use overloads (3-6). The ordering relation must establish total order.
|
Return value
vector
s are equal, false otherwisevector
s are not equal, false otherwiseComplexity
vector
vector
Example
#include <iostream> #include <vector> int main() { std::vector<int> alice{1, 2, 3}; std::vector<int> bob{7, 8, 9, 10}; std::vector<int> eve{1, 2, 3}; std::cout << std::boolalpha; // Compare non equal containers std::cout << "alice == bob returns " << (alice == bob) << '\n'; std::cout << "alice != bob returns " << (alice != bob) << '\n'; std::cout << "alice < bob returns " << (alice < bob) << '\n'; std::cout << "alice <= bob returns " << (alice <= bob) << '\n'; std::cout << "alice > bob returns " << (alice > bob) << '\n'; std::cout << "alice >= bob returns " << (alice >= bob) << '\n'; std::cout << '\n'; // Compare equal containers std::cout << "alice == eve returns " << (alice == eve) << '\n'; std::cout << "alice != eve returns " << (alice != eve) << '\n'; std::cout << "alice < eve returns " << (alice < eve) << '\n'; std::cout << "alice <= eve returns " << (alice <= eve) << '\n'; std::cout << "alice > eve returns " << (alice > eve) << '\n'; std::cout << "alice >= eve returns " << (alice >= eve) << '\n'; }
Output:
alice == bob returns false alice != bob returns true alice < bob returns true alice <= bob returns true alice > bob returns false alice >= bob returns false alice == eve returns true alice != eve returns false alice < eve returns false alice <= eve returns true alice > eve returns false alice >= eve returns true
Defect reports
The following behavior-changing defect reports were applied retroactively to previously published C++ standards.
DR | Applied to | Behavior as published | Correct behavior |
---|---|---|---|
LWG 469 | C++98 | std::vector<bool> specialized the comparison operators | removed the specializations |