Namespaces
Variants
Views
Actions

std::type_index

From cppreference.com
< cpp | types
Revision as of 22:36, 19 April 2012 by P12bot (Talk | contribs)

Template:cpp/types/type index/sidebar

Defined in header <typeindex>
class type_index;
(since C++11)

The type_index class is a wrapper class around a std::type_info object, that can be used as index in associative and unordered associative containers. The relationship with type_info object is maintained through a pointer, therefore type_index is CopyConstructible and CopyAssignable.

Member functions

constructs the object
(public member function) [edit]
compares the underlying std::type_info objects
(public member function) [edit]
returns hashed code
(public member function) [edit]
returns implementation defined name of the type,
associated with underlying type_info object
(public member function) [edit]

Helper classes

hash support for std::type_index
(class template specialization) [edit]

See also

contains some type's information, generated by the implementation.
This is the class, returned by the typeid operator
(class) [edit]