Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Function template type_id

boost::typeindex::type_id

Synopsis

// In header: <boost/type_index.hpp>


template<typename T>  ();

Description

Function to get boost::typeindex::type_index for a type T. Removes const, volatile && and & modifiers from T.

Example:

Template Parameters:

T

Type for which type_index must be created.

Returns:

boost::typeindex::type_index with information about the specified type T.

Throws:

Nothing.

PrevUpHomeNext