Compares the underlying std::type_info
objects.
std::type_info
objects refer to the same type.std::type_info
objects as defined by an implementation-defined ordering. The comparison is done by type_info::before
. The | (since C++20) |
rhs | - | another type_index object to compare to |
true
if the types referred by the underlying std::type_info
objects are ordered by corresponding order, false
otherwise.std::strong_ordering::equal
if the underlying std::type_info
objects refer to the same type, otherwise std::strong_ordering::less
if *this
's underlying std::type_info
object precedes rhs
's in the implementation-defined ordering, otherwise std::strong_ordering::greater
.
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/cpp/types/type_index/operator_cmp