std::type_index::operator==,!=,<,<=,>,>=,<=>
来自 cppreference.com
< cpp | types | type index
bool operator==( const type_index& rhs ) const noexcept; |
(1) | (自 C++11 起) |
bool operator!=( const type_index& rhs ) const noexcept; |
(2) | (自 C++11 起) (直到 C++20) |
bool operator<( const type_index& rhs ) const noexcept; |
(3) | (自 C++11 起) |
bool operator<=( const type_index& rhs ) const noexcept; |
(4) | (自 C++11 起) |
bool operator>( const type_index& rhs ) const noexcept; |
(5) | (自 C++11 起) |
bool operator>=( const type_index& rhs ) const noexcept; |
(6) | (自 C++11 起) |
std::strong_ordering operator<=>( const type_index& rhs ) const noexcept; |
(7) | (自 C++20 起) |
比较底层的 std::type_info 对象。
1,2) 检查底层的 std::type_info 对象是否引用同一类型。
|
(自 C++20 起) |
[编辑] 参数
rhs | - | 另一个要比较的 type_index 对象 |
[编辑] 返回值
7) std::strong_ordering::equal 如果底层的 std::type_info 对象引用同一类型,否则 std::strong_ordering::less 如果 *this 的底层 std::type_info 对象在实现定义的排序中优先于 rhs 的,否则为 std::strong_ordering::greater。