...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
boost::typeindex::type_id_with_cvr
// In header: <boost/type_index.hpp> template<typename T> type_index type_id_with_cvr();
Function for constructing boost::typeindex::type_index instance for type T. Does not remove const, volatile, & and && modifiers from T.
If T has no const, volatile, & and && modifiers, then returns exactly the same result as in case of calling type_id<T>()
.
Example:
type_index ti = type_id_with_cvr<int&>(); std::cout << ti.pretty_name(); // Outputs 'int&'
Template Parameters: |
|
||
Returns: |
boost::typeindex::type_index with information about the specified type T. |
||
Throws: |
Nothing. |