diff --git a/boost/operator_idp5208672.html b/boost/operator_idp5208672.html new file mode 100644 index 0000000..fb8b6fe --- /dev/null +++ b/boost/operator_idp5208672.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<typename T> static template_index construct();-
Factory method for constructing template_index
instance for type T. Strips const, volatile and & modifiers from T
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.
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
const char * name() const;Retrurns raw name.
std::string name_demangled() const;Retrurns user-friendly name.
std::size_t hash_code() const;+
Function for getting hash value
template_index
public member functionstemplate_index
public static functionsbool 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.
+template<typename T> static template_index construct();+
Factory method for constructing template_index
instance for type T. Strips const, volatile and & modifiers from T
const char * name() const;Retrurns raw name.
std::string name_demangled() const;Retrurns user-friendly name.
std::size_t hash_code() const;-
Function for getting hash value
+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.