operator==,!=,<,<=,>,>=,<=> (std::set)
|
Defined in header
<set>
|
||
| (1) | (constexpr since C++26) | |
| (2) | (until C++20) | |
| (3) | (until C++20) | |
| (4) | (until C++20) | |
| (5) | (until C++20) | |
| (6) | (until C++20) | |
| (7) |
(since C++20)
(constexpr since C++26) |
|
Compares the contents of two
set
s.
Let
value_type
be the value type of
set
(i.e.,
typename
set
::
value_type
):
|
return
std::
distance
(
lhs.
begin
(
)
, lhs.
end
(
)
)
|
(until C++14) |
|
return std:: equal ( lhs. begin ( ) , lhs. end ( ) , rhs. begin ( ) , rhs. end ( ) ) ; |
(since C++14) |
rhs. begin ( ) , rhs. end ( ) ) ; .
-
value_typeis not LessThanComparable . - operator < does not establish total order .
rhs.
begin
(
)
, rhs.
end
(
)
,
synth-three-way
)
.
-
Tdoes not modelthree_way_comparable. -
operator
<
is not defined for values of type (possibly const-qualified)
value_type. - operator < does not establish total order .
|
The
|
(since C++20) |
Contents |
Parameters
| lhs, rhs | - |
set
s whose contents to compare
|
Return value
| Operator |
lhs
and
rhs
are equal |
lhs
is
lexicographically greater |
rhs
is
lexicographically greater |
|---|---|---|---|
| operator == | true | false | |
| operator ! = | false | true | |
| operator < | false | false | true |
| operator <= | true | ||
| operator > | false | true | false |
| operator >= | true | ||
| operator <=> | a value equal to 0 | a value greater then 0 | a value less than 0 |
Complexity
set
.
set
.
Notes
|
The relational operators are defined in terms of
|
(until C++20) |
|
The relational operators are not defined. The rewritten candidate operator <=> will be selected by overload resolution.
operator
<=>
uses
|
(since C++20) |
These non-member comparison operators do not use
Compare
to compare elements.
Example
#include <cassert> #include <compare> #include <set> int main() { const std::set a{1, 2, 3}, b{1, 2, 3}, c{7, 8, 9, 10}; assert ("" "Compare equal containers:" && (a != b) == false && (a == b) == true && (a < b) == false && (a <= b) == true && (a > b) == false && (a >= b) == true && (a <=> b) != std::weak_ordering::less && (a <=> b) != std::weak_ordering::greater && (a <=> b) == std::weak_ordering::equivalent && (a <=> b) >= 0 && (a <=> b) <= 0 && (a <=> b) == 0 && "Compare non equal containers:" && (a != c) == true && (a == c) == false && (a < c) == true && (a <= c) == true && (a > c) == false && (a >= c) == false && (a <=> c) == std::weak_ordering::less && (a <=> c) != std::weak_ordering::equivalent && (a <=> c) != std::weak_ordering::greater && (a <=> c) < 0 && (a <=> c) != 0 && (a <=> c) <= 0 && ""); }
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 3431 | C++20 |
operator
<=>
did not require
T
to model
three_way_comparable
|
requires |