diff --git a/boost/template_id.html b/boost/template_id.html
index 785448e..f1697a9 100644
--- a/boost/template_id.html
+++ b/boost/template_id.html
@@ -34,7 +34,7 @@
template < typename T> template_index template_id ( ) ;
-
Description
+
Description
Method for constructing template_index
instance for type T. Strips const, volatile and & modifiers from T.
diff --git a/boost/template_id_with_cvr.html b/boost/template_id_with_cvr.html
index e4e8a24..045ba93 100644
--- a/boost/template_id_with_cvr.html
+++ b/boost/template_id_with_cvr.html
@@ -34,8 +34,8 @@
template < typename T> template_index template_id_with_cvr ( ) ;
-
Description
-
Factory method for constructing template_index
instance for type T. Does not strips const, volatile and & modifiers from T.
+
Description
+
Factory method for constructing template_index
instance for type T. Does not strips 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 `template_id<T>()`.
diff --git a/boost/template_index.html b/boost/template_index.html
index c2a3a0f..2657f34 100644
--- a/boost/template_index.html
+++ b/boost/template_index.html
@@ -35,59 +35,59 @@
class template_index {
public :
- template_index ( ) ;
+ template_index ( ) ;
-
- bool before ( const template_index & ) const ;
- const char * name ( ) const ;
- std :: string name_demangled ( ) const ;
- std :: size_t hash_code ( ) const ;
+
+ bool before ( const template_index & ) const ;
+ const char * name ( ) const ;
+ std :: string name_demangled ( ) const ;
+ std :: size_t hash_code ( ) const ;
-
- template < typename T> static template_index construct ( ) ;
- template < typename T> static template_index construct_with_cvr ( ) ;
+
+ template < typename T> static template_index construct ( ) ;
+ template < typename T> static template_index construct_with_cvr ( ) ;
} ;
-
Description
+
Description
Copyable type_info that does not require RTTI and could store const, volatile and references if constructed via construct_with_cvr()
-
+
template_index
public
construct/copy/destruct
-template_index ( ) ;
+template_index ( ) ;
Default constructor.
-
-template_index
public member functions
+
+template_index
public member functions
-bool 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 functions
+
+template_index
public static functions
-template < 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
diff --git a/boost/type_id.html b/boost/type_id.html
index aef2a31..11d4a46 100644
--- a/boost/type_id.html
+++ b/boost/type_id.html
@@ -7,7 +7,7 @@
-
+
@@ -34,7 +34,7 @@
template < typename T
> type_index type_id ( ) ;
-
Description
+
Description
Function, to get type_index
for a type T. Strips const, volatile and & modifiers from T.
@@ -48,7 +48,7 @@