diff --git a/boost/template_id.html b/boost/template_id.html index 0e29a2d..785448e 100644 --- a/boost/template_id.html +++ b/boost/template_id.html @@ -34,7 +34,7 @@ template<typename T> template_index template_id();
Method for constructing template_index
instance for type T. Strips const, volatile and & modifiers from T.
Factory method for constructing template_index
instance for type T. Does not strips const, volatile and & modifiers from T.
Copyable type_info that does not require RTTI and could store const, volatile and references if constructed via construct_with_cvr()
template_index
public member functionstemplate_index
public member functionsbool before(const template_index & rhs) const;+
bool before(const template_index & rhs) const;
Returns true if the type precedes the type of rhs in the collation order. The collation order is just an internal order.
const char * name() const;Returns raw name.
const char * name() const;Returns raw name.
std::string name_demangled() const;Returns user-friendly name.
std::string name_demangled() const;Returns user-friendly name.
std::size_t hash_code() const;Function for getting hash value.
std::size_t hash_code() const;+
Function for getting hash value
+template_index
public static functionstemplate_index
public static functionstemplate<typename T> static template_index construct();+
template<typename T> static template_index construct();
Factory method for constructing template_index
instance for type T. Strips const, volatile and & modifiers from T
template<typename T> static template_index construct_with_cvr();+
template<typename T> static template_index construct_with_cvr();
Factory method for constructing template_index
instance for type T. Does not strips const, volatile and & modifiers from T
boost::type_id_rtti_only
+boost::type_id
// In header: <boost/type_index/type_index_impl.hpp> -template<typename T> type_index type_id_rtti_only(T & rtti_val);
Function, that works exactly like C++ typeid(rtti_val) call, but returns boost::type_index
. This method available only with RTTI enabled.
Function, to get type_index
for a type T. Strips const, volatile and & modifiers from T.
![]() |
+Home | +Libraries | +People | +FAQ | +More | +
boost::type_id_rtti_only
+// In header: <boost/type_index/type_index_impl.hpp> + + +template<typename T> type_index type_id_rtti_only(T & rtti_val);
Function, that works exactly like C++ typeid(rtti_val) call, but returns boost::type_index
. This method available only with RTTI enabled.
+ | + |
boost::type_id_rtti_only
@@ -34,7 +34,7 @@ template<typename T> type_index type_id_rtti_only(T * rtti_val);Function, that works exactly like C++ typeid(rtti_val) call, but returns boost::type_index
. This method available only with RTTI enabled.