std::type_info::before

From Cppreference

Jump to: navigation, search
bool before( const type_info& rhs );

Returns true if the referred type precedes type, referred to by rhs in the implementation's collation order. No guarantees are given, in particular, the collation order can change between the invocations of the same program.

Contents

[edit] Parameters

rhs - another type information object to compare to

[edit] Return value

true if the referred type precedes type, referred to by rhs in the implementation's collation order.

[edit] Example

[edit] See also

operator==
operator!=
checks whether the objects refer to the same type
(public member function)