operator==, !=, <, <=, >, >=, <=>(std::variant)
From cppreference.com
Defined in header <variant>
|
||
template< class... Types > constexpr bool operator==( const std::variant<Types...>& v, |
(1) | (since C++17) |
template< class... Types > constexpr bool operator!=( const std::variant<Types...>& v, |
(2) | (since C++17) |
template< class... Types > constexpr bool operator<( const std::variant<Types...>& v, |
(3) | (since C++17) |
template< class... Types > constexpr bool operator>( const std::variant<Types...>& v, |
(4) | (since C++17) |
template< class... Types > constexpr bool operator<=( const std::variant<Types...>& v, |
(5) | (since C++17) |
template< class... Types > constexpr bool operator>=( const std::variant<Types...>& v, |
(6) | (since C++17) |
template< class... Types > constexpr std::common_comparison_category_t< |
(7) | (since C++20) |
1) Equality operator for variants:
- If v.index() != w.index(), returns
false
; - otherwise if v.valueless_by_exception(), returns
true
; - otherwise returns std::get<v.index()>(v) == std::get<v.index()>(w). The behavior is undefined if std::get<i>(v) == std::get<i>(w) is not a valid expression returning a type convertible to bool, for any
i
.
2) Inequality operator for variants:
- If v.index() != w.index(), returns
true
; - otherwise if v.valueless_by_exception(), returns
false
; - otherwise returns std::get<v.index()>(v) != std::get<v.index()>(w). The behavior is undefined if std::get<i>(v) != std::get<i>(w) is not a valid expression returning a type convertible to bool, for any
i
.
3) Less-than operator for variants:
- If w.valueless_by_exception(), returns
false
; - otherwise if v.valueless_by_exception(), returns
true
; - otherwise if v.index() < w.index(), returns
true
; - otherwise if v.index() > w.index(), returns
false
; - otherwise returns std::get<v.index()>(v) < std::get<v.index()>(w). The behavior is undefined if std::get<i>(v) < std::get<i>(w) is not a valid expression returning a type convertible to bool, for any
i
.
4) Greater-than operator for variants:
- If v.valueless_by_exception(), returns
false
; - otherwise if w.valueless_by_exception(), returns
true
; - otherwise if v.index() > w.index(), returns
true
; - otherwise if v.index() < w.index(), returns
false
; - otherwise returns std::get<v.index()>(v) > std::get<v.index()>(w). The behavior is undefined if std::get<i>(v) > std::get<i>(w) is not a valid expression returning a type convertible to bool, for any
i
.
5) Less-equal operator for variants:
- If v.valueless_by_exception(), returns
true
; - otherwise if w.valueless_by_exception(), returns
false
; - otherwise if v.index() < w.index(), returns
true
; - otherwise if v.index() > w.index(), returns
false
; - otherwise returns std::get<v.index()>(v) <= std::get<v.index()>(w). The behavior is undefined if std::get<i>(v) <= std::get<i>(w) is not a valid expression returning a type convertible to bool, for any
i
.
6) Greater-equal operator for variants:
- If w.valueless_by_exception(), returns
true
; - otherwise if v.valueless_by_exception(), returns
false
; - otherwise if v.index() > w.index(), returns
true
; - otherwise if v.index() < w.index(), returns
false
; - otherwise std::get<v.index()>(v) >= std::get<v.index()>(w). The behavior is undefined if std::get<i>(v) >= std::get<i>(w) is not a valid expression returning a type convertible to bool, for any
i
.
7) Three-way comparison operator for variants:
- If both v.valueless_by_exception() and w.valueless_by_exception() are
true
, returnsstd::strong_ordering::equal
; - otherwise if v.valueless_by_exception() is
true
, returnsstd::strong_ordering::less
; - otherwise if w.valueless_by_exception() is
true
, returnsstd::strong_ordering::greater
; - otherwise if v.index() != w.index(), returns v.index() <=> w.index();
- otherwise equivalent to std::get<v.index()>(v) <=> std::get<v.index()>(w).
Parameters
v,w | - | variants to compare |
Return value
The result of the comparison as described above.
Example
This section is incomplete Reason: no example |
See also
(C++17)(C++17)(C++17)(C++17)(C++17)(C++17)(C++20) |
compares optional objects (function template) |