diff --git a/boost/operator_idp5279488.html b/boost/operator_idp5279488.html new file mode 100644 index 0000000..4155887 --- /dev/null +++ b/boost/operator_idp5279488.html @@ -0,0 +1,55 @@ + +
+ +![]() |
+Home | +Libraries | +People | +FAQ | +More | +
boost::operator<<
+// In header: <boost/type_index.hpp> + + +std::basic_ostream & +operator<<(std::basic_ostream, template_index/type_index const & rhs);
+ | + |
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;+
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
Function, to get type_index
for a type T. Strips const, volatile and & modifiers from T.