diff --git a/cxx_type_traits.htm b/cxx_type_traits.htm index 4c92a7e..a0f1a68 100644 --- a/cxx_type_traits.htm +++ b/cxx_type_traits.htm @@ -1,13 +1,11 @@ - + - +

Automatic redirection failed, please go to - ../../doc/html/boost_typetraits/background.html - or view the online version at - http://www.boost.org/regression-logs/cs-win32_metacomm/doc/html/boost_typetraits/background.html + doc/html/boost_typetraits/background.html.

Copyright John Maddock 2006

Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at www.boost.org/LICENSE_1_0.txt).

@@ -17,3 +15,4 @@ + diff --git a/doc/Jamfile.v2 b/doc/Jamfile.v2 index 789cf02..7143451 100644 --- a/doc/Jamfile.v2 +++ b/doc/Jamfile.v2 @@ -5,15 +5,63 @@ using quickbook ; +path-constant boost-images : ../../../doc/src/images ; + xml type_traits : type_traits.qbk ; boostbook standalone : type_traits : - nav.layout=none - navig.graphics=0 + # Path for links to Boost: + boost.root=../../../.. + # Path for libraries index: + boost.libraries=../../../libraries.htm + # Use the main Boost stylesheet: + html.stylesheet=../../../../doc/html/boostbook.css + + # Some general style settings: + table.footnote.number.format=1 + footnote.number.format=1 + + # HTML options first: + # Use graphics not text for navigation: + navig.graphics=1 + # How far down we chunk nested sections, basically all of them: + chunk.section.depth=10 + # Don't put the first section on the same page as the TOC: + chunk.first.sections=1 + # How far down sections get TOC's + toc.section.depth=10 + # Max depth in each TOC: + toc.max.depth=4 + # How far down we go with TOC's + generate.section.toc.level=10 + + # PDF Options: + # TOC Generation: this is needed for FOP-0.9 and later: + # fop1.extensions=1 + xep.extensions=1 + # TOC generation: this is needed for FOP 0.2, but must not be set to zero for FOP-0.9! + fop.extensions=0 + # No indent on body text: + body.start.indent=0pt + # Margin size: + page.margin.inner=0.5in + # Margin size: + page.margin.outer=0.5in + # Paper type = A4 + paper.type=A4 + # Yes, we want graphics for admonishments: + admon.graphics=1 + # Set this one for PDF generation *only*: + # default pnd graphics are awful in PDF form, + # better use SVG's instead: + pdf:admon.graphics.extension=".svg" + pdf:admon.graphics.path=$(boost-images)/ ; -install html : ../../../doc/html/boostbook.css ; -install ../ : ../../../boost.png ; +#install html : ../../../doc/html/boostbook.css ; +#install ../ : ../../../boost.png ; + + diff --git a/doc/html/boost_typetraits/background.html b/doc/html/boost_typetraits/background.html new file mode 100644 index 0000000..64d11c0 --- /dev/null +++ b/doc/html/boost_typetraits/background.html @@ -0,0 +1,693 @@ + + + +Background and Tutorial + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +

+ The following is an updated version of the article "C++ Type traits" + by John Maddock and Steve Cleary that appeared in the October 2000 issue of + Dr Dobb's Journal. +

+

+ Generic programming (writing code which works with any data type meeting a + set of requirements) has become the method of choice for providing reusable + code. However, there are times in generic programming when "generic" + just isn't good enough - sometimes the differences between types are too large + for an efficient generic implementation. This is when the traits technique + becomes important - by encapsulating those properties that need to be considered + on a type by type basis inside a traits class, we can minimize the amount of + code that has to differ from one type to another, and maximize the amount of + generic code. +

+

+ Consider an example: when working with character strings, one common operation + is to determine the length of a null terminated string. Clearly it's possible + to write generic code that can do this, but it turns out that there are much + more efficient methods available: for example, the C library functions strlen and wcslen + are usually written in assembler, and with suitable hardware support can be + considerably faster than a generic version written in C++. The authors of the + C++ standard library realized this, and abstracted the properties of char and wchar_t + into the class char_traits. + Generic code that works with character strings can simply use char_traits<>::length to determine the length of a null + terminated string, safe in the knowledge that specializations of char_traits will use the most appropriate + method available to them. +

+
+ + Type Traits +
+

+ Class char_traits is a classic + example of a collection of type specific properties wrapped up in a single + class - what Nathan Myers termed a baggage class[1]. In the Boost type-traits library, + we[2] have written a set of very + specific traits classes, each of which encapsulate a single trait from the + C++ type system; for example, is a type a pointer or a reference type? Or does + a type have a trivial constructor, or a const-qualifier? The type-traits classes + share a unified design: each class inherits from a the type true_type + if the type has the specified property and inherits from false_type + otherwise. As we will show, these classes can be used in generic programming + to determine the properties of a given type and introduce optimizations that + are appropriate for that case. +

+

+ The type-traits library also contains a set of classes that perform a specific + transformation on a type; for example, they can remove a top-level const or + volatile qualifier from a type. Each class that performs a transformation defines + a single typedef-member type + that is the result of the transformation. All of the type-traits classes are + defined inside namespace boost; + for brevity, namespace-qualification is omitted in most of the code samples + given. +

+
+ + Implementation +
+

+ There are far too many separate classes contained in the type-traits library + to give a full implementation here - see the source code in the Boost library + for the full details - however, most of the implementation is fairly repetitive + anyway, so here we will just give you a flavor for how some of the classes + are implemented. Beginning with possibly the simplest class in the library, + is_void<T> inherits + from true_type + only if T is void. +

+
+template <typename T> 
+struct is_void : public false_type{};
+
+template <> 
+struct is_void<void> : public true_type{};
+
+

+ Here we define a primary version of the template class is_void, + and provide a full-specialization when T + is void. While full specialization + of a template class is an important technique, sometimes we need a solution + that is halfway between a fully generic solution, and a full specialization. + This is exactly the situation for which the standards committee defined partial + template-class specialization. As an example, consider the class boost::is_pointer<T>: + here we needed a primary version that handles all the cases where T is not + a pointer, and a partial specialization to handle all the cases where T is + a pointer: +

+
+template <typename T> 
+struct is_pointer : public false_type{};
+
+template <typename T> 
+struct is_pointer<T*> : public true_type{};
+
+

+ The syntax for partial specialization is somewhat arcane and could easily occupy + an article in its own right; like full specialization, in order to write a + partial specialization for a class, you must first declare the primary template. + The partial specialization contains an extra <...> after the class name + that contains the partial specialization parameters; these define the types + that will bind to that partial specialization rather than the default template. + The rules for what can appear in a partial specialization are somewhat convoluted, + but as a rule of thumb if you can legally write two function overloads of the + form: +

+
+void foo(T);
+void foo(U);
+
+

+ Then you can also write a partial specialization of the form: +

+
+template <typename T>
+class c{ /*details*/ };
+
+template <typename T>
+class c<U>{ /*details*/ };
+
+

+ This rule is by no means foolproof, but it is reasonably simple to remember + and close enough to the actual rule to be useful for everyday use. +

+

+ As a more complex example of partial specialization consider the class remove_extent<T>. This + class defines a single typedef-member type + that is the same type as T but with any top-level array bounds removed; this + is an example of a traits class that performs a transformation on a type: +

+
+template <typename T> 
+struct remove_extent
+{ typedef T type; };
+
+template <typename T, std::size_t N> 
+struct remove_extent<T[N]>
+{ typedef T type; };
+
+

+ The aim of remove_extent + is this: imagine a generic algorithm that is passed an array type as a template + parameter, remove_extent + provides a means of determining the underlying type of the array. For example + remove_extent<int[4][5]>::type would evaluate to the type int[5]. This example also shows that the number of + template parameters in a partial specialization does not have to match the + number in the default template. However, the number of parameters that appear + after the class name do have to match the number and type of the parameters + in the default template. +

+
+ + Optimized copy +
+

+ As an example of how the type traits classes can be used, consider the standard + library algorithm copy: +

+
+template<typename Iter1, typename Iter2>
+Iter2 copy(Iter1 first, Iter1 last, Iter2 out);
+
+

+ Obviously, there's no problem writing a generic version of copy that works + for all iterator types Iter1 + and Iter2; however, there are + some circumstances when the copy operation can best be performed by a call + to memcpy. In order to implement + copy in terms of memcpy all + of the following conditions need to be met: +

+
    +
  • + Both of the iterator types Iter1 + and Iter2 must be pointers. +
  • +
  • + Both Iter1 and Iter2 must point to the same type - excluding + const and volatile-qualifiers. +
  • +
  • + The type pointed to by Iter1 + must have a trivial assignment operator. +
  • +
+

+ By trivial assignment operator we mean that the type is either a scalar type[3] or: +

+
    +
  • + The type has no user defined assignment operator. +
  • +
  • + The type does not have any data members that are references. +
  • +
  • + All base classes, and all data member objects must have trivial assignment + operators. +
  • +
+

+ If all these conditions are met then a type can be copied using memcpy rather than using a compiler generated + assignment operator. The type-traits library provides a class has_trivial_assign, + such that has_trivial_assign<T>::value is true only if T has a trivial assignment + operator. This class "just works" for scalar types, but has to be + explicitly specialised for class/struct types that also happen to have a trivial + assignment operator. In other words if has_trivial_assign + gives the wrong answer, it will give the "safe" wrong answer - that + trivial assignment is not allowable. +

+

+ The code for an optimized version of copy that uses memcpy + where appropriate is given in the + examples. The code begins by defining a template function do_copy that performs a "slow but safe" + copy. The last parameter passed to this function may be either a true_type + or a false_type. + Following that there is an overload of docopy that + uses `memcpy`: this time the iterators are required to actually be pointers + to the same type, and the final parameter must be a `_true_type. Finally, the version + of copy calls + docopy`, passing `_has_trivial_assign<value_type>()` + as the final parameter: this will dispatch to the optimized version where appropriate, + otherwise it will call the "slow but safe version". +

+
+ + Was it worth it? +
+

+ It has often been repeated in these columns that "premature optimization + is the root of all evil" [4]. + So the question must be asked: was our optimization premature? To put this + in perspective the timings for our version of copy compared a conventional + generic copy[5] are shown in table + 1. +

+

+ Clearly the optimization makes a difference in this case; but, to be fair, + the timings are loaded to exclude cache miss effects - without this accurate + comparison between algorithms becomes difficult. However, perhaps we can add + a couple of caveats to the premature optimization rule: +

+
    +
  • + If you use the right algorithm for the job in the first place then optimization + will not be required; in some cases, memcpy is the right algorithm. +
  • +
  • + If a component is going to be reused in many places by many people then optimizations + may well be worthwhile where they would not be so for a single case - in + other words, the likelihood that the optimization will be absolutely necessary + somewhere, sometime is that much higher. Just as importantly the perceived + value of the stock implementation will be higher: there is no point standardizing + an algorithm if users reject it on the grounds that there are better, more + heavily optimized versions available. +
  • +
+
+

Table 1.1. Time taken to copy 1000 elements using `copy<const + T*, T*>` (times in micro-seconds)

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

+ Version +

+
+

+ T +

+
+

+ Time +

+
+

+ "Optimized" copy +

+
+

+ char +

+
+

+ 0.99 +

+
+

+ Conventional copy +

+
+

+ char +

+
+

+ 8.07 +

+
+

+ "Optimized" copy +

+
+

+ int +

+
+

+ 2.52 +

+
+

+ Conventional copy +

+
+

+ int +

+
+

+ 8.02 +

+
+
+
+ + Pair of References +
+

+ The optimized copy example shows how type traits may be used to perform optimization + decisions at compile-time. Another important usage of type traits is to allow + code to compile that otherwise would not do so unless excessive partial specialization + is used. This is possible by delegating partial specialization to the type + traits classes. Our example for this form of usage is a pair that can hold + references [6]. +

+

+ First, let us examine the definition of std::pair, omitting + the comparison operators, default constructor, and template copy constructor + for simplicity: +

+
+template <typename T1, typename T2> 
+struct pair 
+{
+typedef T1 first_type;
+typedef T2 second_type;
+
+T1 first;
+T2 second;
+
+pair(const T1 & nfirst, const T2 & nsecond)
+:first(nfirst), second(nsecond) { }
+};
+
+

+ Now, this "pair" cannot hold references as it currently stands, because + the constructor would require taking a reference to a reference, which is currently + illegal [7]. Let us consider what + the constructor's parameters would have to be in order to allow "pair" + to hold non-reference types, references, and constant references: +

+
+

Table 1.2. Required Constructor Argument Types

+
++++ + + + + + + + + + + + + + + + + + + +
+

+ Type of T1 +

+
+

+ Type of parameter to initializing constructor +

+
+

+ T +

+
+

+ const T & +

+
+

+ T & +

+
+

+ T & +

+
+

+ const T & +

+
+

+ const T & +

+
+
+

+ A little familiarity with the type traits classes allows us to construct a + single mapping that allows us to determine the type of parameter from the type + of the contained class. The type traits classes provide a transformation add_reference, which + adds a reference to its type, unless it is already a reference. +

+
+

Table 1.3. Using add_reference to synthesize the correct constructor + type

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +
+

+ Type of T1 +

+
+

+ Type of const T1 +

+
+

+ Type of add_reference<const T1>::type +

+
+

+ T +

+
+

+ const T +

+
+

+ const T & +

+
+

+ T & +

+
+

+ T & [8] +

+
+

+ T & +

+
+

+ const T & +

+
+

+ const T & +

+
+

+ const T & +

+
+
+

+ This allows us to build a primary template definition for pair + that can contain non-reference types, reference types, and constant reference + types: +

+
+template <typename T1, typename T2> 
+struct pair 
+{
+typedef T1 first_type;
+typedef T2 second_type;
+
+T1 first;
+T2 second;
+
+pair(boost::add_reference<const T1>::type nfirst,
+      boost::add_reference<const T2>::type nsecond)
+:first(nfirst), second(nsecond) { }
+};
+
+

+ Add back in the standard comparison operators, default constructor, and template + copy constructor (which are all the same), and you have a std::pair that + can hold reference types! +

+

+ This same extension could have been done using partial template specialization + of pair, but to specialize + pair in this way would require + three partial specializations, plus the primary template. Type traits allows + us to define a single primary template that adjusts itself auto-magically to + any of these partial specializations, instead of a brute-force partial specialization + approach. Using type traits in this fashion allows programmers to delegate + partial specialization to the type traits classes, resulting in code that is + easier to maintain and easier to understand. +

+
+ + Conclusion +
+

+ We hope that in this article we have been able to give you some idea of what + type-traits are all about. A more complete listing of the available classes + are in the boost documentation, along with further examples using type traits. + Templates have enabled C++ uses to take the advantage of the code reuse that + generic programming brings; hopefully this article has shown that generic programming + does not have to sink to the lowest common denominator, and that templates + can be optimal as well as generic. +

+
+ + Acknowledgements +
+

+ The authors would like to thank Beman Dawes and Howard Hinnant for their helpful + comments when preparing this article. +

+
+ + References +
+
    +
  1. + Nathan C. Myers, C++ Report, June 1995. +
  2. +
  3. + The type traits library is based upon contributions by Steve Cleary, Beman + Dawes, Howard Hinnant and John Maddock: it can be found at www.boost.org. +
  4. +
  5. + A scalar type is an arithmetic type (i.e. a built-in integer or floating + point type), an enumeration type, a pointer, a pointer to member, or a const- + or volatile-qualified version of one of these types. +
  6. +
  7. + This quote is from Donald Knuth, ACM Computing Surveys, December 1974, pg + 268. +
  8. +
  9. + The test code is available as part of the boost utility library (see algo_opt_examples.cpp), + the code was compiled with gcc 2.95 with all optimisations turned on, tests + were conducted on a 400MHz Pentium II machine running Microsoft Windows 98. +
  10. +
  11. + John Maddock and Howard Hinnant have submitted a "compressed_pair" + library to Boost, which uses a technique similar to the one described here + to hold references. Their pair also uses type traits to determine if any + of the types are empty, and will derive instead of contain to conserve space + -- hence the name "compressed". +
  12. +
  13. + This is actually an issue with the C++ Core Language Working Group (issue + #106), submitted by Bjarne Stroustrup. The tentative resolution is to allow + a "reference to a reference to T" to mean the same thing as a "reference + to T", but only in template instantiation, in a method similar to multiple + cv-qualifiers. +
  14. +
  15. + For those of you who are wondering why this shouldn't be const-qualified, + remember that references are always implicitly constant (for example, you + can't re-assign a reference). Remember also that "const T &" + is something completely different. For this reason, cv-qualifiers on template + type arguments that are references are ignored. +
  16. +
+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/category.html b/doc/html/boost_typetraits/category.html new file mode 100644 index 0000000..a089195 --- /dev/null +++ b/doc/html/boost_typetraits/category.html @@ -0,0 +1,63 @@ + + + +Type Traits by Category + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+ + + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/category/alignment.html b/doc/html/boost_typetraits/category/alignment.html new file mode 100644 index 0000000..93ee9ed --- /dev/null +++ b/doc/html/boost_typetraits/category/alignment.html @@ -0,0 +1,62 @@ + + + +Synthesizing Types with Specific Alignments + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +

+ Some low level memory management routines need to synthesize a POD type with + specific alignment properties. The template type_with_alignment + finds the smallest type with a specified alignment, while template aligned_storage + creates a type with a specific size and alignment. +

+

+ Synopsis +

+
+template <std::size_t Align>
+struct type_with_alignment;
+
+template <std::size_t Size, std::size_t Align>
+struct aligned_storage;
+
+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/category/background.html b/doc/html/boost_typetraits/category/background.html new file mode 100644 index 0000000..3891995 --- /dev/null +++ b/doc/html/boost_typetraits/category/background.html @@ -0,0 +1,699 @@ + + + +Background and Tutorial + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +

+ The following is an updated version of the article "C++ Type traits" + by John Maddock and Steve Cleary that appeared in the October 2000 issue + of Dr Dobb's Journal. +

+

+ Generic programming (writing code which works with any data type meeting + a set of requirements) has become the method of choice for providing reusable + code. However, there are times in generic programming when "generic" + just isn't good enough - sometimes the differences between types are too + large for an efficient generic implementation. This is when the traits technique + becomes important - by encapsulating those properties that need to be considered + on a type by type basis inside a traits class, we can minimize the amount + of code that has to differ from one type to another, and maximize the amount + of generic code. +

+

+ Consider an example: when working with character strings, one common operation + is to determine the length of a null terminated string. Clearly it's possible + to write generic code that can do this, but it turns out that there are much + more efficient methods available: for example, the C library functions strlen and wcslen + are usually written in assembler, and with suitable hardware support can + be considerably faster than a generic version written in C++. The authors + of the C++ standard library realized this, and abstracted the properties + of char and wchar_t + into the class char_traits. + Generic code that works with character strings can simply use char_traits<>::length to determine the length of a null + terminated string, safe in the knowledge that specializations of char_traits will use the most appropriate + method available to them. +

+
+ + Type Traits +
+

+ Class char_traits is a classic + example of a collection of type specific properties wrapped up in a single + class - what Nathan Myers termed a baggage class[1]. In the Boost type-traits library, + we[2] have written a set of + very specific traits classes, each of which encapsulate a single trait from + the C++ type system; for example, is a type a pointer or a reference type? + Or does a type have a trivial constructor, or a const-qualifier? The type-traits + classes share a unified design: each class inherits from a the type true_type if + the type has the specified property and inherits from false_type + otherwise. As we will show, these classes can be used in generic programming + to determine the properties of a given type and introduce optimizations that + are appropriate for that case. +

+

+ The type-traits library also contains a set of classes that perform a specific + transformation on a type; for example, they can remove a top-level const + or volatile qualifier from a type. Each class that performs a transformation + defines a single typedef-member type + that is the result of the transformation. All of the type-traits classes + are defined inside namespace boost; + for brevity, namespace-qualification is omitted in most of the code samples + given. +

+
+ + Implementation +
+

+ There are far too many separate classes contained in the type-traits library + to give a full implementation here - see the source code in the Boost library + for the full details - however, most of the implementation is fairly repetitive + anyway, so here we will just give you a flavor for how some of the classes + are implemented. Beginning with possibly the simplest class in the library, + is_void<T> inherits + from true_type + only if T is void. +

+
+template <typename T> 
+struct is_void : public false_type{};
+
+template <> 
+struct is_void<void> : public true_type{};
+
+

+ Here we define a primary version of the template class is_void, + and provide a full-specialization when T + is void. While full specialization + of a template class is an important technique, sometimes we need a solution + that is halfway between a fully generic solution, and a full specialization. + This is exactly the situation for which the standards committee defined partial + template-class specialization. As an example, consider the class boost::is_pointer<T>: + here we needed a primary version that handles all the cases where T is not + a pointer, and a partial specialization to handle all the cases where T is + a pointer: +

+
+template <typename T> 
+struct is_pointer : public false_type{};
+
+template <typename T> 
+struct is_pointer<T*> : public true_type{};
+
+

+ The syntax for partial specialization is somewhat arcane and could easily + occupy an article in its own right; like full specialization, in order to + write a partial specialization for a class, you must first declare the primary + template. The partial specialization contains an extra <...> after + the class name that contains the partial specialization parameters; these + define the types that will bind to that partial specialization rather than + the default template. The rules for what can appear in a partial specialization + are somewhat convoluted, but as a rule of thumb if you can legally write + two function overloads of the form: +

+
+void foo(T);
+void foo(U);
+
+

+ Then you can also write a partial specialization of the form: +

+
+template <typename T>
+class c{ /*details*/ };
+
+template <typename T>
+class c<U>{ /*details*/ };
+
+

+ This rule is by no means foolproof, but it is reasonably simple to remember + and close enough to the actual rule to be useful for everyday use. +

+

+ As a more complex example of partial specialization consider the class remove_extent<T>. + This class defines a single typedef-member type + that is the same type as T but with any top-level array bounds removed; this + is an example of a traits class that performs a transformation on a type: +

+
+template <typename T> 
+struct remove_extent
+{ typedef T type; };
+
+template <typename T, std::size_t N> 
+struct remove_extent<T[N]>
+{ typedef T type; };
+
+

+ The aim of remove_extent + is this: imagine a generic algorithm that is passed an array type as a template + parameter, remove_extent + provides a means of determining the underlying type of the array. For example + remove_extent<int[4][5]>::type would evaluate to the type int[5]. This example also shows that the number + of template parameters in a partial specialization does not have to match + the number in the default template. However, the number of parameters that + appear after the class name do have to match the number and type of the parameters + in the default template. +

+
+ + Optimized + copy +
+

+ As an example of how the type traits classes can be used, consider the standard + library algorithm copy: +

+
+template<typename Iter1, typename Iter2>
+Iter2 copy(Iter1 first, Iter1 last, Iter2 out);
+
+

+ Obviously, there's no problem writing a generic version of copy that works + for all iterator types Iter1 + and Iter2; however, there + are some circumstances when the copy operation can best be performed by a + call to memcpy. In order + to implement copy in terms of memcpy + all of the following conditions need to be met: +

+
    +
  • + Both of the iterator types Iter1 + and Iter2 must be pointers. +
  • +
  • + Both Iter1 and Iter2 must point to the same type - excluding + const and volatile-qualifiers. +
  • +
  • + The type pointed to by Iter1 + must have a trivial assignment operator. +
  • +
+

+ By trivial assignment operator we mean that the type is either a scalar type[3] or: +

+
    +
  • + The type has no user defined assignment operator. +
  • +
  • + The type does not have any data members that are references. +
  • +
  • + All base classes, and all data member objects must have trivial assignment + operators. +
  • +
+

+ If all these conditions are met then a type can be copied using memcpy rather than using a compiler generated + assignment operator. The type-traits library provides a class has_trivial_assign, + such that has_trivial_assign<T>::value is true only if T has a trivial assignment + operator. This class "just works" for scalar types, but has to + be explicitly specialised for class/struct types that also happen to have + a trivial assignment operator. In other words if has_trivial_assign + gives the wrong answer, it will give the "safe" wrong answer - + that trivial assignment is not allowable. +

+

+ The code for an optimized version of copy that uses memcpy + where appropriate is given in the examples. + The code begins by defining a template function do_copy + that performs a "slow but safe" copy. The last parameter passed + to this function may be either a true_type + or a false_type. + Following that there is an overload of docopy + that uses `memcpy`: this time the iterators are required to actually be pointers + to the same type, and the final parameter must be a `_true_type. Finally, the version of + copy calls docopy`, passing `_has_trivial_assign<value_type>()` + as the final parameter: this will dispatch to the optimized version where + appropriate, otherwise it will call the "slow but safe version". +

+
+ + Was + it worth it? +
+

+ It has often been repeated in these columns that "premature optimization + is the root of all evil" [4]. + So the question must be asked: was our optimization premature? To put this + in perspective the timings for our version of copy compared a conventional + generic copy[5] are shown in + table 1. +

+

+ Clearly the optimization makes a difference in this case; but, to be fair, + the timings are loaded to exclude cache miss effects - without this accurate + comparison between algorithms becomes difficult. However, perhaps we can + add a couple of caveats to the premature optimization rule: +

+
    +
  • + If you use the right algorithm for the job in the first place then optimization + will not be required; in some cases, memcpy is the right algorithm. +
  • +
  • + If a component is going to be reused in many places by many people then + optimizations may well be worthwhile where they would not be so for a single + case - in other words, the likelihood that the optimization will be absolutely + necessary somewhere, sometime is that much higher. Just as importantly + the perceived value of the stock implementation will be higher: there is + no point standardizing an algorithm if users reject it on the grounds that + there are better, more heavily optimized versions available. +
  • +
+
+

Table 1.1. Time taken to copy 1000 elements using `copy<const + T*, T*>` (times in micro-seconds)

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

+ Version +

+
+

+ T +

+
+

+ Time +

+
+

+ "Optimized" copy +

+
+

+ char +

+
+

+ 0.99 +

+
+

+ Conventional copy +

+
+

+ char +

+
+

+ 8.07 +

+
+

+ "Optimized" copy +

+
+

+ int +

+
+

+ 2.52 +

+
+

+ Conventional copy +

+
+

+ int +

+
+

+ 8.02 +

+
+
+
+ + Pair + of References +
+

+ The optimized copy example shows how type traits may be used to perform optimization + decisions at compile-time. Another important usage of type traits is to allow + code to compile that otherwise would not do so unless excessive partial specialization + is used. This is possible by delegating partial specialization to the type + traits classes. Our example for this form of usage is a pair that can hold + references [6]. +

+

+ First, let us examine the definition of std::pair, + omitting the comparison operators, default constructor, and template copy + constructor for simplicity: +

+
+template <typename T1, typename T2> 
+struct pair 
+{
+typedef T1 first_type;
+typedef T2 second_type;
+
+T1 first;
+T2 second;
+
+pair(const T1 & nfirst, const T2 & nsecond)
+:first(nfirst), second(nsecond) { }
+};
+
+

+ Now, this "pair" cannot hold references as it currently stands, + because the constructor would require taking a reference to a reference, + which is currently illegal [7]. + Let us consider what the constructor's parameters would have to be in order + to allow "pair" to hold non-reference types, references, and constant + references: +

+
+

Table 1.2. Required Constructor Argument Types

+
++++ + + + + + + + + + + + + + + + + + + +
+

+ Type of T1 +

+
+

+ Type of parameter to initializing constructor +

+
+

+ T +

+
+

+ const T & +

+
+

+ T & +

+
+

+ T & +

+
+

+ const T & +

+
+

+ const T & +

+
+
+

+ A little familiarity with the type traits classes allows us to construct + a single mapping that allows us to determine the type of parameter from the + type of the contained class. The type traits classes provide a transformation + add_reference, + which adds a reference to its type, unless it is already a reference. +

+
+

Table 1.3. Using add_reference to synthesize the correct constructor + type

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +
+

+ Type of T1 +

+
+

+ Type of const T1 +

+
+

+ Type of add_reference<const + T1>::type +

+
+

+ T +

+
+

+ const T +

+
+

+ const T & +

+
+

+ T & +

+
+

+ T & [8] +

+
+

+ T & +

+
+

+ const T & +

+
+

+ const T & +

+
+

+ const T & +

+
+
+

+ This allows us to build a primary template definition for pair + that can contain non-reference types, reference types, and constant reference + types: +

+
+template <typename T1, typename T2> 
+struct pair 
+{
+typedef T1 first_type;
+typedef T2 second_type;
+
+T1 first;
+T2 second;
+
+pair(boost::add_reference<const T1>::type nfirst,
+      boost::add_reference<const T2>::type nsecond)
+:first(nfirst), second(nsecond) { }
+};
+
+

+ Add back in the standard comparison operators, default constructor, and template + copy constructor (which are all the same), and you have a std::pair + that can hold reference types! +

+

+ This same extension could have been done using partial template specialization + of pair, but to specialize + pair in this way would require + three partial specializations, plus the primary template. Type traits allows + us to define a single primary template that adjusts itself auto-magically + to any of these partial specializations, instead of a brute-force partial + specialization approach. Using type traits in this fashion allows programmers + to delegate partial specialization to the type traits classes, resulting + in code that is easier to maintain and easier to understand. +

+
+ + Conclusion +
+

+ We hope that in this article we have been able to give you some idea of what + type-traits are all about. A more complete listing of the available classes + are in the boost documentation, along with further examples using type traits. + Templates have enabled C++ uses to take the advantage of the code reuse that + generic programming brings; hopefully this article has shown that generic + programming does not have to sink to the lowest common denominator, and that + templates can be optimal as well as generic. +

+
+ + Acknowledgements +
+

+ The authors would like to thank Beman Dawes and Howard Hinnant for their + helpful comments when preparing this article. +

+
+ + References +
+
    +
  1. + Nathan C. Myers, C++ Report, June 1995. +
  2. +
  3. + The type traits library is based upon contributions by Steve Cleary, Beman + Dawes, Howard Hinnant and John Maddock: it can be found at www.boost.org. +
  4. +
  5. + A scalar type is an arithmetic type (i.e. a built-in integer or floating + point type), an enumeration type, a pointer, a pointer to member, or a + const- or volatile-qualified version of one of these types. +
  6. +
  7. + This quote is from Donald Knuth, ACM Computing Surveys, December 1974, + pg 268. +
  8. +
  9. + The test code is available as part of the boost utility library (see algo_opt_examples.cpp), + the code was compiled with gcc 2.95 with all optimisations turned on, tests + were conducted on a 400MHz Pentium II machine running Microsoft Windows + 98. +
  10. +
  11. + John Maddock and Howard Hinnant have submitted a "compressed_pair" + library to Boost, which uses a technique similar to the one described here + to hold references. Their pair also uses type traits to determine if any + of the types are empty, and will derive instead of contain to conserve + space -- hence the name "compressed". +
  12. +
  13. + This is actually an issue with the C++ Core Language Working Group (issue + #106), submitted by Bjarne Stroustrup. The tentative resolution is to allow + a "reference to a reference to T" to mean the same thing as a + "reference to T", but only in template instantiation, in a method + similar to multiple cv-qualifiers. +
  14. +
  15. + For those of you who are wondering why this shouldn't be const-qualified, + remember that references are always implicitly constant (for example, you + can't re-assign a reference). Remember also that "const T &" + is something completely different. For this reason, cv-qualifiers on template + type arguments that are references are ignored. +
  16. +
+
+ + + +
Copyright © 2000, 2006 Adobe Systems Inc, David Abrahams, + Steve Cleary, Beman Dawes, Aleksey Gurtovoy, Howard Hinnant, Jesse Jones, Mat + Marcus, Itay Maman, John Maddock, Alexander Nasonov, Thorsten Ottosen, Robert + Ramey and Jeremy Siek
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/category/function.html b/doc/html/boost_typetraits/category/function.html new file mode 100644 index 0000000..9c601a6 --- /dev/null +++ b/doc/html/boost_typetraits/category/function.html @@ -0,0 +1,59 @@ + + + +Decomposing Function Types + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +

+ The class template function_traits + extracts information from function types (see also is_function). + This traits class allows you to tell how many arguments a function takes, + what those argument types are, and what the return type is. +

+

+ Synopsis +

+
+template <std::size_t Align>
+struct function_traits;
+
+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/category/transform.html b/doc/html/boost_typetraits/category/transform.html new file mode 100644 index 0000000..f4805fc --- /dev/null +++ b/doc/html/boost_typetraits/category/transform.html @@ -0,0 +1,168 @@ + + + +Type Traits that Transform One Type to Another + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +

+ The following templates transform one type to another, based upon some well-defined + rule. Each template has a single member called type + that is the result of applying the transformation to the template argument + T. +

+

+ Synopsis: +

+
+template <class T>
+struct add_const;
+
+template <class T>
+struct add_cv;
+
+template <class T>
+struct add_pointer;
+
+template <class T>
+struct add_reference;
+
+template <class T>
+struct add_volatile;
+
+template <class T>
+struct decay;
+
+template <class T>
+struct floating_point_promotion;
+
+template <class T>
+struct integral_promotion;
+
+template <class T>
+struct make_signed;
+
+template <class T>
+struct make_unsigned;
+
+template <class T>
+struct promote;
+
+template <class T>
+struct remove_all_extents;
+
+template <class T>
+struct remove_const;
+
+template <class T>
+struct remove_cv;
+
+template <class T>
+struct remove_extent;
+
+template <class T>
+struct remove_pointer;
+
+template <class T>
+struct remove_reference;
+
+template <class T>
+struct remove_volatile;
+
+
+ + Broken + Compiler Workarounds: +
+

+ For all of these templates support for partial specialization of class templates + is required to correctly implement the transformation. On the other hand, + practice shows that many of the templates from this category are very useful, + and often essential for implementing some generic libraries. Lack of these + templates is often one of the major limiting factors in porting those libraries + to compilers that do not yet support this language feature. As some of these + compilers are going to be around for a while, and at least one of them is + very wide-spread, it was decided that the library should provide workarounds + where possible. +

+

+ The basic idea behind the workaround is to manually define full specializations + of all type transformation templates for all fundamental types, and all their + 1st and 2nd rank cv-[un]qualified derivative pointer types, and to provide + a user-level macro that will define all the explicit specializations needed + for any user-defined type T. +

+

+ The first part guarantees the successful compilation of something like this: +

+
+BOOST_STATIC_ASSERT((is_same<char, remove_reference<char&>::type>::value));
+BOOST_STATIC_ASSERT((is_same<char const, remove_reference<char const&>::type>::value));
+BOOST_STATIC_ASSERT((is_same<char volatile, remove_reference<char volatile&>::type>::value));
+BOOST_STATIC_ASSERT((is_same<char const volatile, remove_reference<char const volatile&>::type>::value));
+BOOST_STATIC_ASSERT((is_same<char*, remove_reference<char*&>::type>::value));
+BOOST_STATIC_ASSERT((is_same<char const*, remove_reference<char const*&>::type>::value));
+...
+BOOST_STATIC_ASSERT((is_same<char const volatile* const volatile* const volatile, remove_reference<char const volatile* const volatile* const volatile&>::type>::value));
+
+

+ and the second part provides the library's users with a mechanism to make + the above code work not only for char, + int or other built-in type, + but for their own types as well: +

+
+namespace myspace{
+   struct MyClass {};
+}
+// declare this at global scope:
+BOOST_BROKEN_COMPILER_TYPE_TRAITS_SPECIALIZATION(myspace::MyClass)
+// transformations on myspace::MyClass now work:
+BOOST_STATIC_ASSERT((is_same<myspace::MyClass, remove_reference<myspace::MyClass&>::type>::value));
+BOOST_STATIC_ASSERT((is_same<myspace::MyClass, remove_const<myspace::MyClass const>::type>::value));
+// etc.
+
+

+ Note that the macro BOOST_BROKEN_COMPILER_TYPE_TRAITS_SPECIALIZATION evaluates + to nothing on those compilers that do support + partial specialization. +

+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/category/value_traits.html b/doc/html/boost_typetraits/category/value_traits.html new file mode 100644 index 0000000..2be34d3 --- /dev/null +++ b/doc/html/boost_typetraits/category/value_traits.html @@ -0,0 +1,64 @@ + + + +Type Traits that Describe the Properties of a Type + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ + +

+ These traits are all value traits, which is to say the + traits classes all inherit from integral_constant, + and are used to access some numerical property of a type. Often this is a + simple true or false Boolean value, but in a few cases may be some other + integer value (for example when dealing with type alignments, or array bounds: + see alignment_of, + rank + and extent). +

+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/category/value_traits/primary.html b/doc/html/boost_typetraits/category/value_traits/primary.html new file mode 100644 index 0000000..bb82e5f --- /dev/null +++ b/doc/html/boost_typetraits/category/value_traits/primary.html @@ -0,0 +1,131 @@ + + + +Categorizing a Type + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +

+ These traits identify what "kind" of type some type T is. These are split into two groups: + primary traits which are all mutually exclusive, and composite traits that + are compositions of one or more primary traits. +

+

+ For any given type, exactly one primary type trait will inherit from true_type, + and all the others will inherit from false_type, + in other words these traits are mutually exclusive. +

+

+ This means that is_integral<T>::value + and is_floating_point<T>::value + will only ever be true for built-in types; if you want to check for a user-defined + class type that behaves "as if" it is an integral or floating + point type, then use the std::numeric_limits + template instead. +

+

+ Synopsis: +

+
+template <class T>
+struct is_array<T>;
+  
+template <class T>
+struct is_class<T>;
+
+template <class T>
+struct is_complex<T>;
+  
+template <class T>
+struct is_enum<T>;
+  
+template <class T>
+struct is_floating_point<T>;
+  
+template <class T>
+struct is_function<T>;
+
+template <class T>
+struct is_integral<T>;
+  
+template <class T>
+struct is_member_function_pointer<T>;
+  
+template <class T>
+struct is_member_object_pointer<T>;
+  
+template <class T>
+struct is_pointer<T>;
+  
+template <class T>
+struct is_reference<T>;
+  
+template <class T>
+struct is_union<T>;
+  
+template <class T>
+struct is_void<T>;
+
+

+ The following traits are made up of the union of one or more type categorizations. + A type may belong to more than one of these categories, in addition to + one of the primary categories. +

+
+template <class T>
+struct is_arithmetic;
+
+template <class T>
+struct is_compound;
+
+template <class T>
+struct is_fundamental;
+
+template <class T>
+struct is_member_pointer;
+
+template <class T>
+struct is_object;
+
+template <class T>
+struct is_scalar;
+
+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/category/value_traits/properties.html b/doc/html/boost_typetraits/category/value_traits/properties.html new file mode 100644 index 0000000..cbe6c24 --- /dev/null +++ b/doc/html/boost_typetraits/category/value_traits/properties.html @@ -0,0 +1,125 @@ + + + +General Type Properties + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +

+ The following templates describe the general properties of a type. +

+

+ Synopsis: +

+
+template <class T>
+struct alignment_of;
+
+template <class T>
+struct has_nothrow_assign;
+
+template <class T>
+struct has_nothrow_constructor;
+
+template <class T>
+struct has_nothrow_default_constructor;
+
+template <class T>
+struct has_nothrow_copy;
+
+template <class T>
+struct has_nothrow_copy_constructor;
+
+template <class T>
+struct has_trivial_assign;
+
+template <class T>
+struct has_trivial_constructor;
+
+template <class T>
+struct has_trivial_default_constructor;
+
+template <class T>
+struct has_trivial_copy;
+
+template <class T>
+struct has_trivial_copy_constructor;
+
+template <class T>
+struct has_trivial_destructor;
+
+template <class T>
+struct has_virtual_destructor;
+
+template <class T>
+struct is_abstract;
+
+template <class T>
+struct is_const;
+
+template <class T>
+struct is_empty;
+
+template <class T>
+struct is_stateless;
+
+template <class T>
+struct is_pod;
+
+template <class T>
+struct is_polymorphic;
+
+template <class T>
+struct is_signed;
+
+template <class T>
+struct is_unsigned;
+
+template <class T>
+struct is_volatile;
+
+template <class T, std::size_t N = 0>
+struct extent;
+
+template <class T>
+struct rank;
+
+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/category/value_traits/relate.html b/doc/html/boost_typetraits/category/value_traits/relate.html new file mode 100644 index 0000000..2ec8d13 --- /dev/null +++ b/doc/html/boost_typetraits/category/value_traits/relate.html @@ -0,0 +1,63 @@ + + + +Relationships Between Two Types + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +

+ These templates determine the whether there is a relationship between two + types: +

+

+ Synopsis: +

+
+template <class Base, class Derived>
+struct is_base_of;
+
+template <class From, class To>
+struct is_convertible;
+
+template <class T, class U>
+struct is_same;
+
+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/credits.html b/doc/html/boost_typetraits/credits.html new file mode 100644 index 0000000..954bff6 --- /dev/null +++ b/doc/html/boost_typetraits/credits.html @@ -0,0 +1,77 @@ + + + +Credits + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHome +
+
+ +

+ This documentation was pulled together by John Maddock, using Boost.Quickbook + and Boost.DocBook. +

+

+ The original version of this library was created by Steve Cleary, Beman Dawes, + Howard Hinnant, and John Maddock. John Maddock is the current maintainer of + the library. +

+

+ This version of type traits library is based on contributions by Adobe Systems + Inc, David Abrahams, Steve Cleary, Beman Dawes, Aleksey Gurtovoy, Howard Hinnant, + Jesse Jones, Mat Marcus, Itay Maman, John Maddock, Thorsten Ottosen, Robert + Ramey and Jeremy Siek. +

+

+ Mat Marcus and Jesse Jones invented, and published + a paper describing, the partial specialization workarounds used in + this library. +

+

+ Aleksey Gurtovoy added MPL integration to the library. +

+

+ The is_convertible + template is based on code originally devised by Andrei Alexandrescu, see "Generic<Programming>: + Mappings between Types and Values". +

+

+ The latest version of this library and documentation can be found at www.boost.org. Bugs, suggestions and discussion + should be directed to boost@lists.boost.org (see www.boost.org/more/mailing_lists.htm#main + for subscription details). +

+
+ + + +
+
+
+PrevUpHome +
+ + diff --git a/doc/html/boost_typetraits/examples.html b/doc/html/boost_typetraits/examples.html new file mode 100644 index 0000000..f3966c9 --- /dev/null +++ b/doc/html/boost_typetraits/examples.html @@ -0,0 +1,57 @@ + + + +Examples + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+ + + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/examples/copy.html b/doc/html/boost_typetraits/examples/copy.html new file mode 100644 index 0000000..bc55a07 --- /dev/null +++ b/doc/html/boost_typetraits/examples/copy.html @@ -0,0 +1,95 @@ + + + +An Optimized Version of std::copy + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +

+ Demonstrates a version of std::copy + that uses has_trivial_assign + to determine whether to use memcpy + to optimise the copy operation (see copy_example.cpp): +

+
+//
+// opt::copy
+// same semantics as std::copy
+// calls memcpy where appropriate.
+//
+
+namespace detail{
+
+template<typename I1, typename I2, bool b>
+I2 copy_imp(I1 first, I1 last, I2 out, const boost::integral_constant<bool, b>&)
+{
+   while(first != last)
+   {
+      *out = *first;
+      ++out;
+      ++first;
+   }
+   return out;
+}
+
+template<typename T>
+T* copy_imp(const T* first, const T* last, T* out, const boost::true_type&)
+{
+   memcpy(out, first, (last-first)*sizeof(T));
+   return out+(last-first);
+}
+
+
+}
+
+template<typename I1, typename I2>
+inline I2 copy(I1 first, I1 last, I2 out)
+{
+   //
+   // We can copy with memcpy if T has a trivial assignment operator,
+   // and if the iterator arguments are actually pointers (this last
+   // requirement we detect with overload resolution):
+   //
+   typedef typename std::iterator_traits<I1>::value_type value_type;
+   return detail::copy_imp(first, last, out, boost::has_trivial_assign<value_type>());
+}
+
+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/examples/destruct.html b/doc/html/boost_typetraits/examples/destruct.html new file mode 100644 index 0000000..de97cb2 --- /dev/null +++ b/doc/html/boost_typetraits/examples/destruct.html @@ -0,0 +1,82 @@ + + + +An Example that Omits Destructor Calls For Types with Trivial Destructors + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +

+ Demonstrates a simple algorithm that uses __has_trivial_destruct + to determine whether to destructors need to be called (see trivial_destructor_example.cpp): +

+
+//
+// algorithm destroy_array:
+// The reverse of std::unitialized_copy, takes a block of
+// initialized memory and calls destructors on all objects therein.
+//
+
+namespace detail{
+
+template <class T>
+void do_destroy_array(T* first, T* last, const boost::false_type&)
+{
+   while(first != last)
+   {
+      first->~T();
+      ++first;
+   }
+}
+
+template <class T>
+inline void do_destroy_array(T* first, T* last, const boost::true_type&)
+{
+}
+
+} // namespace detail
+
+template <class T>
+inline void destroy_array(T* p1, T* p2)
+{
+   detail::do_destroy_array(p1, p2, ::boost::has_trivial_destructor<T>());
+}
+
+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/examples/fill.html b/doc/html/boost_typetraits/examples/fill.html new file mode 100644 index 0000000..d371390 --- /dev/null +++ b/doc/html/boost_typetraits/examples/fill.html @@ -0,0 +1,89 @@ + + + +An Optimised Version of std::fill + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +

+ Demonstrates a version of std::fill + that uses has_trivial_assign + to determine whether to use memset + to optimise the fill operation (see fill_example.cpp): +

+
+//
+// fill
+// same as std::fill, but uses memset where appropriate
+//
+namespace detail{
+
+template <typename I, typename T, bool b>
+void do_fill(I first, I last, const T& val, const boost::integral_constant<bool, b>&)
+{
+   while(first != last)
+   {
+      *first = val;
+      ++first;
+   }
+}
+
+template <typename T>
+void do_fill(T* first, T* last, const T& val, const boost::true_type&)
+{
+   std::memset(first, val, last-first);
+}
+
+}
+
+template <class I, class T>
+inline void fill(I first, I last, const T& val)
+{
+   //
+   // We can do an optimised fill if T has a trivial assignment 
+   // operator and if it's size is one:
+   //
+   typedef boost::integral_constant<bool, 
+      ::boost::has_trivial_assign<T>::value && (sizeof(T) == 1)> truth_type;
+   detail::do_fill(first, last, val, truth_type());
+}
+
+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/examples/iter.html b/doc/html/boost_typetraits/examples/iter.html new file mode 100644 index 0000000..f3c1318 --- /dev/null +++ b/doc/html/boost_typetraits/examples/iter.html @@ -0,0 +1,98 @@ + + + +An improved Version of std::iter_swap + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +

+ Demonstrates a version of std::iter_swap + that use type traits to determine whether an it's arguments are proxying + iterators or not, if they're not then it just does a std::swap + of it's dereferenced arguments (the same as std::iter_swap + does), however if they are proxying iterators then takes special care over + the swap to ensure that the algorithm works correctly for both proxying iterators, + and even iterators of different types (see iter_swap_example.cpp): +

+
+//
+// iter_swap:
+// tests whether iterator is a proxying iterator or not, and
+// uses optimal form accordingly:
+//
+namespace detail{
+
+template <typename I>
+static void do_swap(I one, I two, const boost::false_type&)
+{
+   typedef typename std::iterator_traits<I>::value_type v_t;
+   v_t v = *one;
+   *one = *two;
+   *two = v;
+}
+template <typename I>
+static void do_swap(I one, I two, const boost::true_type&)
+{
+   using std::swap;
+   swap(*one, *two);
+}
+
+}
+
+template <typename I1, typename I2>
+inline void iter_swap(I1 one, I2 two)
+{
+   //
+   // See is both arguments are non-proxying iterators, 
+   // and if both iterator the same type:
+   //
+   typedef typename std::iterator_traits<I1>::reference r1_t;
+   typedef typename std::iterator_traits<I2>::reference r2_t;
+
+   typedef boost::integral_constant<bool,
+      ::boost::is_reference<r1_t>::value
+      && ::boost::is_reference<r2_t>::value
+      && ::boost::is_same<r1_t, r2_t>::value> truth_type;
+
+   detail::do_swap(one, two, truth_type());
+}
+
+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/examples/to_double.html b/doc/html/boost_typetraits/examples/to_double.html new file mode 100644 index 0000000..c1a59f0 --- /dev/null +++ b/doc/html/boost_typetraits/examples/to_double.html @@ -0,0 +1,58 @@ + + + +Convert Numeric Types and Enums to double + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +

+ Demonstrates a conversion of Numeric + Types and enum types to double: +

+
+template<class T>
+inline double to_double(T const& value)
+{
+    typedef typename boost::promote<T>::type promoted;
+    return boost::numeric::converter<double,promoted>::convert(value);
+}
+
+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/intrinsics.html b/doc/html/boost_typetraits/intrinsics.html new file mode 100644 index 0000000..8c40bbe --- /dev/null +++ b/doc/html/boost_typetraits/intrinsics.html @@ -0,0 +1,243 @@ + + + +Support for Compiler Intrinsics + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +

+ There are some traits that can not be implemented within the current C++ language: + to make these traits "just work" with user defined types, some kind + of additional help from the compiler is required. Currently (May 2005) MWCW + 9 and Visual C++ 8 provide the necessary intrinsics, and other compilers will + no doubt follow in due course. +

+

+ The Following traits classes always need compiler support to do the right thing + for all types (but all have safe fallback positions if this support is unavailable): +

+ +

+ The following traits classes can't be portably implemented in the C++ language, + although in practice, the implementations do in fact do the right thing on + all the compilers we know about: +

+ +

+ The following traits classes are dependent on one or more of the above: +

+ +

+ The hooks for compiler-intrinsic support are defined in boost/type_traits/intrinsics.hpp, + adding support for new compilers is simply a matter of defining one of more + of the following macros: +

+
+

Table 1.4. Macros for Compiler Intrinsics

+
++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

+ BOOST_IS_UNION(T) +

+
+

+ Should evaluate to true if T is a union type +

+
+

+ BOOST_IS_POD(T) +

+
+

+ Should evaluate to true if T is a POD type +

+
+

+ BOOST_IS_EMPTY(T) +

+
+

+ Should evaluate to true if T is an empty struct or union +

+
+

+ BOOST_HAS_TRIVIAL_CONSTRUCTOR(T) +

+
+

+ Should evaluate to true if the default constructor for T is trivial (i.e. + has no effect) +

+
+

+ BOOST_HAS_TRIVIAL_COPY(T) +

+
+

+ Should evaluate to true if T has a trivial copy constructor (and can + therefore be replaced by a call to memcpy) +

+
+

+ BOOST_HAS_TRIVIAL_ASSIGN(T) +

+
+

+ Should evaluate to true if T has a trivial assignment operator (and can + therefore be replaced by a call to memcpy) +

+
+

+ BOOST_HAS_TRIVIAL_DESTRUCTOR(T) +

+
+

+ Should evaluate to true if T has a trivial destructor (i.e. ~T() has + no effect) +

+
+

+ BOOST_HAS_NOTHROW_CONSTRUCTOR(T) +

+
+

+ Should evaluate to true if T + x; + can not throw +

+
+

+ BOOST_HAS_NOTHROW_COPY(T) +

+
+

+ Should evaluate to true if T(t) can not throw +

+
+

+ BOOST_HAS_NOTHROW_ASSIGN(T) +

+
+

+ Should evaluate to true if T + t, + u; + t = + u can not throw +

+
+

+ BOOST_HAS_VIRTUAL_DESTRUCTOR(T) +

+
+

+ Should evaluate to true T has a virtual destructor +

+
+
+
+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/intro.html b/doc/html/boost_typetraits/intro.html new file mode 100644 index 0000000..d0e1cca --- /dev/null +++ b/doc/html/boost_typetraits/intro.html @@ -0,0 +1,64 @@ + + + +Introduction + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +

+ The Boost type-traits library contains a set of very specific traits classes, + each of which encapsulate a single trait from the C++ type system; for example, + is a type a pointer or a reference type? Or does a type have a trivial constructor, + or a const-qualifier? +

+

+ The type-traits classes share a unified design: each class inherits from a + the type true_type + if the type has the specified property and inherits from false_type + otherwise. +

+

+ The type-traits library also contains a set of classes that perform a specific + transformation on a type; for example, they can remove a top-level const or + volatile qualifier from a type. Each class that performs a transformation defines + a single typedef-member type + that is the result of the transformation. +

+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/mpl.html b/doc/html/boost_typetraits/mpl.html new file mode 100644 index 0000000..3eddb4a --- /dev/null +++ b/doc/html/boost_typetraits/mpl.html @@ -0,0 +1,61 @@ + + + +MPL Interoperability + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +

+ All the value based traits in this library conform to MPL's requirements for + an Integral + Constant type: that includes a number of rather intrusive workarounds + for broken compilers. +

+

+ Purely as an implementation detail, this means that true_type + inherits from boost::mpl::true_, + false_type + inherits from boost::mpl::false_, + and integral_constant<T, + v> + inherits from boost::mpl::integral_c<T,v> + (provided T is not bool) +

+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/reference.html b/doc/html/boost_typetraits/reference.html new file mode 100644 index 0000000..e0200a3 --- /dev/null +++ b/doc/html/boost_typetraits/reference.html @@ -0,0 +1,120 @@ + + + +Alphabetical Reference + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+ + + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/reference/add_const.html b/doc/html/boost_typetraits/reference/add_const.html new file mode 100644 index 0000000..90feb0b --- /dev/null +++ b/doc/html/boost_typetraits/reference/add_const.html @@ -0,0 +1,145 @@ + + + +add_const + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +
+template <class T>
+struct add_const
+{
+   typedef see-below type;
+};
+
+

+ type: The same type as T + const for all T. +

+

+ C++ Standard Reference: 3.9.3. +

+

+ Compiler Compatibility: If the compiler + does not support partial specialization of class-templates then this template + will compile, but the member type + will always be the same as type T + except where compiler + workarounds have been applied. +

+

+ Header: #include + <boost/type_traits/add_const.hpp> + or #include <boost/type_traits.hpp> +

+
+

Table 1.5. Examples

+
++++ + + + + + + + + + + + + + + + + + + + + + + +
+

+ Expression +

+
+

+ Result Type +

+
+

+ add_const<int>::type +

+
+

+ int const +

+
+

+ add_const<int&>::type +

+
+

+ int& +

+
+

+ add_const<int*>::type +

+
+

+ int* + const +

+
+

+ add_const<int const>::type +

+
+

+ int const +

+
+
+
+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/reference/add_cv.html b/doc/html/boost_typetraits/reference/add_cv.html new file mode 100644 index 0000000..81da4df --- /dev/null +++ b/doc/html/boost_typetraits/reference/add_cv.html @@ -0,0 +1,148 @@ + + + +add_cv + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +
+template <class T>
+struct add_cv
+{
+   typedef see-below type;
+};
+
+

+ type: The same type as T + const volatile + for all T. +

+

+ C++ Standard Reference: 3.9.3. +

+

+ Compiler Compatibility: If the compiler + does not support partial specialization of class-templates then this template + will compile, but the member type + will always be the same as type T + except where compiler + workarounds have been applied. +

+

+ Header: #include + <boost/type_traits/add_cv.hpp> + or #include <boost/type_traits.hpp> +

+
+

Table 1.6. Examples

+
++++ + + + + + + + + + + + + + + + + + + + + + + +
+

+ Expression +

+
+

+ Result Type +

+
+

+ add_cv<int>::type +

+
+

+ int const + volatile +

+
+

+ add_cv<int&>::type +

+
+

+ int& +

+
+

+ add_cv<int*>::type +

+
+

+ int* + const volatile +

+
+

+ add_cv<int const>::type +

+
+

+ int const + volatile +

+
+
+
+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/reference/add_pointer.html b/doc/html/boost_typetraits/reference/add_pointer.html new file mode 100644 index 0000000..b6588e1 --- /dev/null +++ b/doc/html/boost_typetraits/reference/add_pointer.html @@ -0,0 +1,147 @@ + + + +add_pointer + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +
+template <class T>
+struct add_pointer
+{
+   typedef see-below type;
+};
+
+

+ type: The same type as remove_reference<T>::type*. +

+

+ The rationale for this template is that it produces the same type as TYPEOF(&t), where + t is an object of type T. +

+

+ C++ Standard Reference: 8.3.1. +

+

+ Compiler Compatibility: If the compiler + does not support partial specialization of class-templates then this template + will compile, but the member type + will always be the same as type T + except where compiler + workarounds have been applied. +

+

+ Header: #include + <boost/type_traits/add_pointer.hpp> + or #include <boost/type_traits.hpp> +

+
+

Table 1.7. Examples

+
++++ + + + + + + + + + + + + + + + + + + + + + + +
+

+ Expression +

+
+

+ Result Type +

+
+

+ add_pointer<int>::type +

+
+

+ int* +

+
+

+ add_pointer<int const&>::type +

+
+

+ int const* +

+
+

+ add_pointer<int*>::type +

+
+

+ int** +

+
+

+ add_pointer<int*&>::type +

+
+

+ int** +

+
+
+
+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/reference/add_reference.html b/doc/html/boost_typetraits/reference/add_reference.html new file mode 100644 index 0000000..15fd08a --- /dev/null +++ b/doc/html/boost_typetraits/reference/add_reference.html @@ -0,0 +1,144 @@ + + + +add_reference + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +
+template <class T>
+struct add_reference
+{
+   typedef see-below type;
+};
+
+

+ type: If T + is not a reference type then T&, otherwise T. +

+

+ C++ Standard Reference: 8.3.2. +

+

+ Compiler Compatibility: If the compiler + does not support partial specialization of class-templates then this template + will compile, but the member type + will always be the same as type T + except where compiler + workarounds have been applied. +

+

+ Header: #include + <boost/type_traits/add_reference.hpp> + or #include <boost/type_traits.hpp> +

+
+

Table 1.8. Examples

+
++++ + + + + + + + + + + + + + + + + + + + + + + +
+

+ Expression +

+
+

+ Result Type +

+
+

+ add_reference<int>::type +

+
+

+ int& +

+
+

+ add_reference<int const&>::type +

+
+

+ int const& +

+
+

+ add_reference<int*>::type +

+
+

+ int*& +

+
+

+ add_reference<int*&>::type +

+
+

+ int*& +

+
+
+
+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/reference/add_volatile.html b/doc/html/boost_typetraits/reference/add_volatile.html new file mode 100644 index 0000000..0dd76f7 --- /dev/null +++ b/doc/html/boost_typetraits/reference/add_volatile.html @@ -0,0 +1,146 @@ + + + +add_volatile + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +
+template <class T>
+struct add_volatile
+{
+   typedef see-below type;
+};
+
+

+ type: The same type as T + volatile for all T. +

+

+ C++ Standard Reference: 3.9.3. +

+

+ Compiler Compatibility: If the compiler + does not support partial specialization of class-templates then this template + will compile, but the member type + will always be the same as type T + except where compiler + workarounds have been applied. +

+

+ Header: #include + <boost/type_traits/add_volatile.hpp> + or #include <boost/type_traits.hpp> +

+
+

Table 1.9. Examples

+
++++ + + + + + + + + + + + + + + + + + + + + + + +
+

+ Expression +

+
+

+ Result Type +

+
+

+ add_volatile<int>::type +

+
+

+ int volatile +

+
+

+ add_volatile<int&>::type +

+
+

+ int& +

+
+

+ add_volatile<int*>::type +

+
+

+ int* + volatile +

+
+

+ add_volatile<int const>::type +

+
+

+ int const + volatile +

+
+
+
+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/reference/aligned_storage.html b/doc/html/boost_typetraits/reference/aligned_storage.html new file mode 100644 index 0000000..5c2ee56 --- /dev/null +++ b/doc/html/boost_typetraits/reference/aligned_storage.html @@ -0,0 +1,62 @@ + + + +aligned_storage + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +
+template <std::size_t Size, std::size_t Align>
+struct aligned_storage
+{
+   typedef see-below type;
+};
+
+

+ type: a built-in or POD type with size + Size and an alignment that + is a multiple of Align. +

+

+ Header: #include + <boost/type_traits/aligned_storage.hpp> + or #include <boost/type_traits.hpp> +

+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/reference/alignment_of.html b/doc/html/boost_typetraits/reference/alignment_of.html new file mode 100644 index 0000000..1759dc0 --- /dev/null +++ b/doc/html/boost_typetraits/reference/alignment_of.html @@ -0,0 +1,105 @@ + + + +alignment_of + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +
+template <class T>
+struct alignment_of : public integral_constant<std::size_t, ALIGNOF(T)> {};
+
+

+ Inherits: Class template alignmentof inherits from `_integral_constant<std::size_t, + ALIGNOF(T)>, where + ALIGNOF(T)` is the alignment of type T. +

+

+ Note: strictly speaking you should only rely on the value of ALIGNOF(T) being + a multiple of the true alignment of T, although in practice it does compute + the correct value in all the cases we know about. +

+

+ Header: #include + <boost/type_traits/alignment_of.hpp> + or #include <boost/type_traits.hpp> +

+

+ Examples: +

+
+

+

+

+ alignment_of<int> + inherits from integral_constant<std::size_t, ALIGNOF(int)>. +

+

+

+
+
+

+

+

+ alignment_of<char>::type is the type integral_constant<std::size_t, ALIGNOF(char)>. +

+

+

+
+
+

+

+

+ alignment_of<double>::value is an integral constant expression + with value ALIGNOF(double). +

+

+

+
+
+

+

+

+ alignment_of<T>::value_type is the type std::size_t. +

+

+

+
+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/reference/decay.html b/doc/html/boost_typetraits/reference/decay.html new file mode 100644 index 0000000..c3f7d2e --- /dev/null +++ b/doc/html/boost_typetraits/reference/decay.html @@ -0,0 +1,151 @@ + + + +decay + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+

+ decay +

+
+template <class T>
+struct decay
+{
+   typedef see-below type;
+};
+
+

+ type: Let U + be the result of remove_reference<T>::type, then if U + is an array type, the result is remove_extent<U>*, + otherwise if U is a function + type then the result is U*, otherwise the result is U. +

+

+ C++ Standard Reference: 3.9.1. +

+

+ Header: #include + <boost/type_traits/decay.hpp> + or #include <boost/type_traits.hpp> +

+
+

Table 1.10. Examples

+
++++ + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

+ Expression +

+
+

+ Result Type +

+
+

+ decay<int[2][3]>::type +

+
+

+ int[2]* +

+
+

+ decay<int(&)[2]>::type +

+
+

+ int* +

+
+

+ decay<int(&)(double)>::type +

+
+

+ int(*)(double) +

+
+

+ int(*)(double +

+
+

+ int(*)(double) +

+
+

+ int(double) +

+
+

+ int(*)(double) +

+
+
+
+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/reference/extent.html b/doc/html/boost_typetraits/reference/extent.html new file mode 100644 index 0000000..caa6195 --- /dev/null +++ b/doc/html/boost_typetraits/reference/extent.html @@ -0,0 +1,137 @@ + + + +extent + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +
+template <class T, std::size_t N = 0>
+struct extent : public integral_constant<std::size_t, EXTENT(T,N)> {};
+
+

+ Inherits: Class template extent inherits + from integral_constant<std::size_t, EXTENT(T,N)>, + where EXTENT(T,N) is the number of elements in the N'th array + dimention of type T. +

+

+ If T is not an array type, + or if N > + rank<T>::value, or if the N'th array bound is incomplete, + then EXTENT(T,N) is zero. +

+

+ Header: #include + <boost/type_traits/extent.hpp> + or #include <boost/type_traits.hpp> +

+

+ Examples: +

+
+

+

+

+ extent<int[1]> inherits from integral_constant<std::size_t, 1>. +

+

+

+
+
+

+

+

+ extent<double[2][3][4], + 1>::type is the type integral_constant<std::size_t, 3>. +

+

+

+
+
+

+

+

+ extent<int[4]>::value + is an integral constant expression that evaluates to 4. +

+

+

+
+
+

+

+

+ extent<int[][2]>::value is an integral constant expression + that evaluates to 0. +

+

+

+
+
+

+

+

+ extent<int[][2], 1>::value + is an integral constant expression that evaluates to 2. +

+

+

+
+
+

+

+

+ extent<int*>::value is an integral constant expression + that evaluates to 0. +

+

+

+
+
+

+

+

+ extent<T>::value_type is the type std::size_t. +

+

+

+
+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/reference/floating_point_promotion.html b/doc/html/boost_typetraits/reference/floating_point_promotion.html new file mode 100644 index 0000000..b1dbd38 --- /dev/null +++ b/doc/html/boost_typetraits/reference/floating_point_promotion.html @@ -0,0 +1,129 @@ + + + +floating_point_promotion + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +
+template <class T>
+struct floating_point_promotion
+{
+   typedef see-below type;
+};
+
+

+ type: If floating point promotion can be + applied to an rvalue of type T, + then applies floating point promotion to T + and keeps cv-qualifiers of T, + otherwise leaves T unchanged. +

+

+ C++ Standard Reference: 4.6. +

+

+ Header: #include + <boost/type_traits/floating_point_promotion.hpp> + or #include <boost/type_traits.hpp> +

+
+

Table 1.11. Examples

+
++++ + + + + + + + + + + + + + + + + + + +
+

+ Expression +

+
+

+ Result Type +

+
+

+ floating_point_promotion<float + const>::type +

+
+

+ double const +

+
+

+ floating_point_promotion<float&>::type +

+
+

+ float& +

+
+

+ floating_point_promotion<short>::type +

+
+

+ short +

+
+
+
+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/reference/function_traits.html b/doc/html/boost_typetraits/reference/function_traits.html new file mode 100644 index 0000000..3ca347b --- /dev/null +++ b/doc/html/boost_typetraits/reference/function_traits.html @@ -0,0 +1,275 @@ + + + +function_traits + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +
+template <class T>
+struct function_traits
+{
+   static const std::size_t    arity = see-below;
+   typedef see-below           result_type;
+   typedef see-below           argN_type; 
+};
+
+

+ The class template function_traits will only compile if: +

+
    +
  • + The compiler supports partial specialization of class templates. +
  • +
  • + The template argument T + is a function type, note that this is not the same thing as a pointer + to a function. +
  • +
+
+ + + + + +
[Tip]Tip

+ function_traits is intended to introspect only C++ functions of the form + R (), R( A1 ), R ( A1, ... etc. ) and not function pointers or class member + functions. To convert a function pointer type to a suitable type use remove_pointer. +

+
+

Table 1.12. Function Traits Members

+
++++ + + + + + + + + + + + + + + + + + + +
+

+ Member +

+
+

+ Description +

+
+

+ function_traits<T>::arity +

+
+

+ An integral constant expression that gives the number of arguments + accepted by the function type F. +

+
+

+ function_traits<T>::result_type +

+
+

+ The type returned by function type F. +

+
+

+ function_traits<T>::argN_type +

+
+

+ The Nth argument type of function type F, + where 1 <= + N <= + arity of F. +

+
+
+
+

Table 1.13. Examples

+
++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

+ Expression +

+
+

+ Result +

+
+

+ function_traits<void (void)>::arity +

+
+

+ An integral constant expression that has the value 0. +

+
+

+ function_traits<long (int)>::arity +

+
+

+ An integral constant expression that has the value 1. +

+
+

+ function_traits<long (int, long, double, void*)>::arity +

+
+

+ An integral constant expression that has the value 4. +

+
+

+ function_traits<void (void)>::result_type +

+
+

+ The type void. +

+
+

+ function_traits<long (int)>::result_type +

+
+

+ The type long. +

+
+

+ function_traits<long (int)>::arg1_type +

+
+

+ The type int. +

+
+

+ function_traits<long (int, long, double, void*)>::arg4_type +

+
+

+ The type void*. +

+
+

+ function_traits<long (int, long, double, void*)>::arg5_type +

+
+

+ A compiler error: there is no arg4_type + since there are only three arguments. +

+
+

+ function_traits<long (*)(void)>::arity +

+
+

+ A compiler error: argument type is a function pointer, + and not a function type. +

+
+
+
+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/reference/has_no_throw_def_cons.html b/doc/html/boost_typetraits/reference/has_no_throw_def_cons.html new file mode 100644 index 0000000..b71350d --- /dev/null +++ b/doc/html/boost_typetraits/reference/has_no_throw_def_cons.html @@ -0,0 +1,48 @@ + + + +has_nothrow_default_constructor + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+ + + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/reference/has_nothrow_assign.html b/doc/html/boost_typetraits/reference/has_nothrow_assign.html new file mode 100644 index 0000000..669a827 --- /dev/null +++ b/doc/html/boost_typetraits/reference/has_nothrow_assign.html @@ -0,0 +1,73 @@ + + + +has_nothrow_assign + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +
+template <class T>
+struct has_nothrow_assign : public true_type-or-false_type {};
+
+

+ Inherits: If T is a (possibly cv-qualified) + type with a non-throwing assignment-operator then inherits from true_type, + otherwise inherits from false_type. + Type T must be a complete + type. +

+

+ Compiler Compatibility: If the compiler + does not support partial-specialization of class templates, then this template + can not be used with function types. +

+

+ Without some (as yet unspecified) help from the compiler, has_nothrow_assign + will never report that a class or struct has a non-throwing assignment-operator; + this is always safe, if possibly sub-optimal. Currently (May 2005) only Visual + C++ 8 has the necessary compiler support to ensure that this trait "just + works". +

+

+ Header: #include + <boost/type_traits/has_nothrow_assign.hpp> + or #include <boost/type_traits.hpp> +

+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/reference/has_nothrow_constructor.html b/doc/html/boost_typetraits/reference/has_nothrow_constructor.html new file mode 100644 index 0000000..1406f0f --- /dev/null +++ b/doc/html/boost_typetraits/reference/has_nothrow_constructor.html @@ -0,0 +1,80 @@ + + + +has_nothrow_constructor + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +
+template <class T>
+struct has_nothrow_constructor : public true_type-or-false_type {};
+
+template <class T>
+struct has_nothrow_default_constructor : public true_type-or-false_type {};
+
+

+ Inherits: If T is a (possibly cv-qualified) + type with a non-throwing default-constructor then inherits from true_type, + otherwise inherits from false_type. + Type T must be a complete + type. +

+

+ These two traits are synonyms for each other. +

+

+ Compiler Compatibility: If the compiler + does not support partial-specialization of class templates, then this template + can not be used with function types. +

+

+ Without some (as yet unspecified) help from the compiler, has_nothrow_constructor + will never report that a class or struct has a non-throwing default-constructor; + this is always safe, if possibly sub-optimal. Currently (May 2005) only Visual + C++ 8 has the necessary compiler intrinsics + to ensure that this trait "just works". +

+

+ Header: #include + <boost/type_traits/has_nothrow_constructor.hpp> + or #include <boost/type_traits.hpp> +

+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/reference/has_nothrow_copy.html b/doc/html/boost_typetraits/reference/has_nothrow_copy.html new file mode 100644 index 0000000..20b5fd7 --- /dev/null +++ b/doc/html/boost_typetraits/reference/has_nothrow_copy.html @@ -0,0 +1,79 @@ + + + +has_nothrow_copy + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +
+template <class T>
+struct has_nothrow_copy : public true_type-or-false_type {};
+
+template <class T>
+struct has_nothrow_copy_constructor : public true_type-or-false_type {};
+
+

+ Inherits: If T is a (possibly cv-qualified) + type with a non-throwing copy-constructor then inherits from true_type, + otherwise inherits from false_type. + Type T must be a complete + type. +

+

+ These two traits are synonyms for each other. +

+

+ Compiler Compatibility: If the compiler + does not support partial-specialization of class templates, then this template + can not be used with function types. +

+

+ Without some (as yet unspecified) help from the compiler, has_nothrow_copy + will never report that a class or struct has a non-throwing copy-constructor; + this is always safe, if possibly sub-optimal. Currently (May 2005) only Visual + C++ 8 has the necessary compiler intrinsics + to ensure that this trait "just works". +

+

+ Header: #include + <boost/type_traits/has_nothrow_copy.hpp> + or #include <boost/type_traits.hpp> +

+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/reference/has_nothrow_cp_cons.html b/doc/html/boost_typetraits/reference/has_nothrow_cp_cons.html new file mode 100644 index 0000000..1ef91c3 --- /dev/null +++ b/doc/html/boost_typetraits/reference/has_nothrow_cp_cons.html @@ -0,0 +1,48 @@ + + + +has_nothrow_copy_constructor + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+ + + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/reference/has_trivial_assign.html b/doc/html/boost_typetraits/reference/has_trivial_assign.html new file mode 100644 index 0000000..968064d --- /dev/null +++ b/doc/html/boost_typetraits/reference/has_trivial_assign.html @@ -0,0 +1,130 @@ + + + +has_trivial_assign + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +
+template <class T>
+struct has_trivial_assign : public true_type-or-false_type {};
+
+

+ Inherits: If T is a (possibly cv-qualified) + type with a trivial assignment-operator then inherits from true_type, + otherwise inherits from false_type. +

+

+ If a type has a trivial assignment-operator then the operator has the same + effect as copying the bits of one object to the other: calls to the operator + can be safely replaced with a call to memcpy. +

+

+ Compiler Compatibility: If the compiler + does not support partial-specialization of class templates, then this template + can not be used with function types. +

+

+ Without some (as yet unspecified) help from the compiler, has_trivial_assign + will never report that a user-defined class or struct has a trivial constructor; + this is always safe, if possibly sub-optimal. Currently (May 2005) only MWCW + 9 and Visual C++ 8 have the necessary compiler intrinsics + to detect user-defined classes with trivial constructors. +

+

+ C++ Standard Reference: 12.8p11. +

+

+ Header: #include + <boost/type_traits/has_trivial_assign.hpp> + or #include <boost/type_traits.hpp> +

+

+ Examples: +

+
+

+

+

+ has_trivial_assign<int> + inherits from true_type. +

+

+

+
+
+

+

+

+ has_trivial_assign<char*>::type is the type true_type. +

+

+

+
+
+

+

+

+ has_trivial_assign<int (*)(long)>::value is an integral constant expression + that evaluates to true. +

+

+

+
+
+

+

+

+ has_trivial_assign<MyClass>::value is an integral constant expression + that evaluates to false. +

+

+

+
+
+

+

+

+ has_trivial_assign<T>::value_type is the type bool. +

+

+

+
+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/reference/has_trivial_constructor.html b/doc/html/boost_typetraits/reference/has_trivial_constructor.html new file mode 100644 index 0000000..0960f00 --- /dev/null +++ b/doc/html/boost_typetraits/reference/has_trivial_constructor.html @@ -0,0 +1,140 @@ + + + +has_trivial_constructor + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +
+template <class T>
+struct has_trivial_constructor : public true_type-or-false_type {};
+
+template <class T>
+struct has_trivial_default_constructor : public true_type-or-false_type {};
+
+

+ Inherits: If T is a (possibly cv-qualified) + type with a trivial default-constructor then inherits from true_type, + otherwise inherits from false_type. +

+

+ These two traits are synonyms for each other. +

+

+ If a type has a trivial default-constructor then the constructor have no + effect: calls to the constructor can be safely omitted. Note that using meta-programming + to omit a call to a single trivial-constructor call is of no benefit whatsoever. + However, if loops and/or exception handling code can also be omitted, then + some benefit in terms of code size and speed can be obtained. +

+

+ Compiler Compatibility: If the compiler + does not support partial-specialization of class templates, then this template + can not be used with function types. +

+

+ Without some (as yet unspecified) help from the compiler, has_trivial_constructor + will never report that a user-defined class or struct has a trivial constructor; + this is always safe, if possibly sub-optimal. Currently (May 2005) only MWCW + 9 and Visual C++ 8 have the necessary compiler intrinsics + to detect user-defined classes with trivial constructors. +

+

+ C++ Standard Reference: 12.1p6. +

+

+ Header: #include + <boost/type_traits/has_trivial_constructor.hpp> + or #include <boost/type_traits.hpp> +

+

+ Examples: +

+
+

+

+

+ has_trivial_constructor<int> inherits from true_type. +

+

+

+
+
+

+

+

+ has_trivial_constructor<char*>::type + is the type true_type. +

+

+

+
+
+

+

+

+ has_trivial_constructor<int (*)(long)>::value + is an integral constant expression that evaluates to true. +

+

+

+
+
+

+

+

+ has_trivial_constructor<MyClass>::value + is an integral constant expression that evaluates to false. +

+

+

+
+
+

+

+

+ has_trivial_constructor<T>::value_type + is the type bool. +

+

+

+
+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/reference/has_trivial_copy.html b/doc/html/boost_typetraits/reference/has_trivial_copy.html new file mode 100644 index 0000000..124a2e7 --- /dev/null +++ b/doc/html/boost_typetraits/reference/has_trivial_copy.html @@ -0,0 +1,136 @@ + + + +has_trivial_copy + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +
+template <class T>
+struct has_trivial_copy : public true_type-or-false_type {};
+
+template <class T>
+struct has_trivial_copy_constructor : public true_type-or-false_type {};
+
+

+ Inherits: If T is a (possibly cv-qualified) + type with a trivial copy-constructor then inherits from true_type, + otherwise inherits from false_type. +

+

+ These two traits are synonyms for each other. +

+

+ If a type has a trivial copy-constructor then the constructor has the same + effect as copying the bits of one object to the other: calls to the constructor + can be safely replaced with a call to memcpy. +

+

+ Compiler Compatibility: If the compiler + does not support partial-specialization of class templates, then this template + can not be used with function types. +

+

+ Without some (as yet unspecified) help from the compiler, has_trivial_copy + will never report that a user-defined class or struct has a trivial constructor; + this is always safe, if possibly sub-optimal. Currently (May 2005) only MWCW + 9 and Visual C++ 8 have the necessary compiler intrinsics + to detect user-defined classes with trivial constructors. +

+

+ C++ Standard Reference: 12.8p6. +

+

+ Header: #include + <boost/type_traits/has_trivial_copy.hpp> + or #include <boost/type_traits.hpp> +

+

+ Examples: +

+
+

+

+

+ has_trivial_copy<int> + inherits from true_type. +

+

+

+
+
+

+

+

+ has_trivial_copy<char*>::type is the type true_type. +

+

+

+
+
+

+

+

+ has_trivial_copy<int (*)(long)>::value is an integral constant expression + that evaluates to true. +

+

+

+
+
+

+

+

+ has_trivial_copy<MyClass>::value is an integral constant expression + that evaluates to false. +

+

+

+
+
+

+

+

+ has_trivial_copy<T>::value_type is the type bool. +

+

+

+
+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/reference/has_trivial_cp_cons.html b/doc/html/boost_typetraits/reference/has_trivial_cp_cons.html new file mode 100644 index 0000000..2cc9178 --- /dev/null +++ b/doc/html/boost_typetraits/reference/has_trivial_cp_cons.html @@ -0,0 +1,48 @@ + + + +has_trivial_copy_constructor + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+ + + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/reference/has_trivial_def_cons.html b/doc/html/boost_typetraits/reference/has_trivial_def_cons.html new file mode 100644 index 0000000..5af22bb --- /dev/null +++ b/doc/html/boost_typetraits/reference/has_trivial_def_cons.html @@ -0,0 +1,48 @@ + + + +has_trivial_default_constructor + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+ + + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/reference/has_trivial_destructor.html b/doc/html/boost_typetraits/reference/has_trivial_destructor.html new file mode 100644 index 0000000..740179f --- /dev/null +++ b/doc/html/boost_typetraits/reference/has_trivial_destructor.html @@ -0,0 +1,133 @@ + + + +has_trivial_destructor + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +
+template <class T>
+struct has_trivial_destructor : public true_type-or-false_type {};
+
+

+ Inherits: If T is a (possibly cv-qualified) + type with a trivial destructor then inherits from true_type, + otherwise inherits from false_type. +

+

+ If a type has a trivial destructor then the destructor has no effect: calls + to the destructor can be safely omitted. Note that using meta-programming + to omit a call to a single trivial-constructor call is of no benefit whatsoever. + However, if loops and/or exception handling code can also be omitted, then + some benefit in terms of code size and speed can be obtained. +

+

+ Compiler Compatibility: If the compiler + does not support partial-specialization of class templates, then this template + can not be used with function types. +

+

+ Without some (as yet unspecified) help from the compiler, has_trivial_destructor + will never report that a user-defined class or struct has a trivial destructor; + this is always safe, if possibly sub-optimal. Currently (May 2005) only MWCW + 9 and Visual C++ 8 have the necessary compiler intrinsics + to detect user-defined classes with trivial constructors. +

+

+ C++ Standard Reference: 12.4p3. +

+

+ Header: #include + <boost/type_traits/has_trivial_destructor.hpp> + or #include <boost/type_traits.hpp> +

+

+ Examples: +

+
+

+

+

+ has_trivial_destructor<int> inherits from true_type. +

+

+

+
+
+

+

+

+ has_trivial_destructor<char*>::type + is the type true_type. +

+

+

+
+
+

+

+

+ has_trivial_destructor<int (*)(long)>::value + is an integral constant expression that evaluates to true. +

+

+

+
+
+

+

+

+ has_trivial_destructor<MyClass>::value + is an integral constant expression that evaluates to false. +

+

+

+
+
+

+

+

+ has_trivial_destructor<T>::value_type + is the type bool. +

+

+

+
+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/reference/has_virtual_destructor.html b/doc/html/boost_typetraits/reference/has_virtual_destructor.html new file mode 100644 index 0000000..43810e2 --- /dev/null +++ b/doc/html/boost_typetraits/reference/has_virtual_destructor.html @@ -0,0 +1,72 @@ + + + +has_virtual_destructor + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +
+template <class T>
+struct has_virtual_destructor : public true_type-or-false_type {};
+
+

+ Inherits: If T is a (possibly cv-qualified) + type with a virtual destructor then inherits from true_type, + otherwise inherits from false_type. +

+

+ Compiler Compatibility: This trait is provided + for completeness, since it's part of the Technical Report on C++ Library + Extensions. However, there is currently no way to portably implement this + trait. The default version provided always inherits from false_type, + and has to be explicitly specialized for types with virtual destructors unless + the compiler used has compiler intrinsics + that enable the trait to do the right thing: currently (May 2005) only Visual + C++ 8 has the necessary intrinsics. +

+

+ C++ Standard Reference: 12.4. +

+

+ Header: #include + <boost/type_traits/has_virtual_destructor.hpp> + or #include <boost/type_traits.hpp> +

+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/reference/integral_constant.html b/doc/html/boost_typetraits/reference/integral_constant.html new file mode 100644 index 0000000..e6384e8 --- /dev/null +++ b/doc/html/boost_typetraits/reference/integral_constant.html @@ -0,0 +1,64 @@ + + + +integral_constant + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +
+template <class T, T val>
+struct integral_constant
+{
+   typedef integral_constant<T, val>  type;
+   typedef T                          value_type;
+   static const T value = val;
+};
+
+typedef integral_constant<bool, true>  true_type;
+typedef integral_constant<bool, false> false_type;
+
+

+ Class template integral_constant + is the common base class for all the value-based type traits. The two typedef's + true_type and false_type are provided for convenience: + most of the value traits are Boolean properties and so will inherit from + one of these. +

+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/reference/integral_promotion.html b/doc/html/boost_typetraits/reference/integral_promotion.html new file mode 100644 index 0000000..908a74e --- /dev/null +++ b/doc/html/boost_typetraits/reference/integral_promotion.html @@ -0,0 +1,129 @@ + + + +integral_promotion + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +
+template <class T>
+struct integral_promotion
+{
+   typedef see-below type;
+};
+
+

+ type: If integral promotion can be applied + to an rvalue of type T, then + applies integral promotion to T + and keeps cv-qualifiers of T, + otherwise leaves T unchanged. +

+

+ C++ Standard Reference: 4.5 except 4.5/3 + (integral bit-field). +

+

+ Header: #include + <boost/type_traits/integral_promotion.hpp> + or #include <boost/type_traits.hpp> +

+
+

Table 1.14. Examples

+
++++ + + + + + + + + + + + + + + + + + + +
+

+ Expression +

+
+

+ Result Type +

+
+

+ integral_promotion<short + const>::type +

+
+

+ int const +

+
+

+ integral_promotion<short&>::type +

+
+

+ short& +

+
+

+ integral_promotion<enum std::float_round_style>::type +

+
+

+ int +

+
+
+
+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/reference/is_abstract.html b/doc/html/boost_typetraits/reference/is_abstract.html new file mode 100644 index 0000000..79c4770 --- /dev/null +++ b/doc/html/boost_typetraits/reference/is_abstract.html @@ -0,0 +1,122 @@ + + + +is_abstract + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +
+template <class T>
+struct is_abstract : public true_type-or-false_type {};
+
+

+ Inherits: If T is a (possibly cv-qualified) + abstract type then inherits from true_type, + otherwise inherits from false_type. +

+

+ C++ Standard Reference: 10.3. +

+

+ Header: #include + <boost/type_traits/is_abstract.hpp> + or #include <boost/type_traits.hpp> +

+

+ Compiler Compatibility: The compiler must + support DR337 (as of April 2005: GCC 3.4, VC++ 7.1 (and later), Intel C++ + 7 (and later), and Comeau 4.3.2). Otherwise behaves the same as is_polymorphic; + this is the "safe fallback position" for which polymorphic types + are always regarded as potentially abstract. The macro BOOST_NO_IS_ABSTRACT + is used to signify that the implementation is buggy, users should check for + this in their own code if the "safe fallback" is not suitable for + their particular use-case. +

+

+ Examples: +

+
+

+

+

+ Given: class abc{ virtual ~abc() = 0; }; +

+

+

+
+
+

+

+

+ is_abstract<abc> + inherits from true_type. +

+

+

+
+
+

+

+

+ is_abstract<abc>::type is the type true_type. +

+

+

+
+
+

+

+

+ is_abstract<abc const>::value + is an integral constant expression that evaluates to true. +

+

+

+
+
+

+

+

+ is_abstract<T>::value_type is the type bool. +

+

+

+
+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/reference/is_arithmetic.html b/doc/html/boost_typetraits/reference/is_arithmetic.html new file mode 100644 index 0000000..757785a --- /dev/null +++ b/doc/html/boost_typetraits/reference/is_arithmetic.html @@ -0,0 +1,105 @@ + + + +is_arithmetic + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +
+template <class T>
+struct is_arithmetic : public true_type-or-false_type {};
+
+

+ Inherits: If T is a (possibly cv-qualified) + arithmetic type then inherits from true_type, + otherwise inherits from false_type. + Arithmetic types include integral and floating point types (see also is_integral and + is_floating_point). +

+

+ C++ Standard Reference: 3.9.1p8. +

+

+ Header: #include + <boost/type_traits/is_arithmetic.hpp> + or #include <boost/type_traits.hpp> +

+

+ Examples: +

+
+

+

+

+ is_arithmetic<int> + inherits from true_type. +

+

+

+
+
+

+

+

+ is_arithmetic<char>::type is the type true_type. +

+

+

+
+
+

+

+

+ is_arithmetic<double>::value is an integral constant expression + that evaluates to true. +

+

+

+
+
+

+

+

+ is_arithmetic<T>::value_type is the type bool. +

+

+

+
+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/reference/is_array.html b/doc/html/boost_typetraits/reference/is_array.html new file mode 100644 index 0000000..1862cd6 --- /dev/null +++ b/doc/html/boost_typetraits/reference/is_array.html @@ -0,0 +1,108 @@ + + + +is_array + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +
+template <class T>
+struct is_array : public true_type-or-false_type {};
+
+

+ Inherits: If T is a (possibly cv-qualified) + array type then inherits from true_type, + otherwise inherits from false_type. +

+

+ C++ Standard Reference: 3.9.2 and 8.3.4. +

+

+ Header: #include + <boost/type_traits/is_array.hpp> + or #include <boost/type_traits.hpp> +

+

+ Compiler Compatibility: If the compiler + does not support partial-specialization of class templates, then this template + can give the wrong result with function types. +

+

+ Examples: +

+
+

+

+

+ is_array<int[2]> inherits from true_type. +

+

+

+
+
+

+

+

+ is_array<char[2][3]>::type + is the type true_type. +

+

+

+
+
+

+

+

+ is_array<double[]>::value is an integral constant expression + that evaluates to true. +

+

+

+
+
+

+

+

+ is_array<T>::value_type is the type bool. +

+

+

+
+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/reference/is_base_of.html b/doc/html/boost_typetraits/reference/is_base_of.html new file mode 100644 index 0000000..b64c5fa --- /dev/null +++ b/doc/html/boost_typetraits/reference/is_base_of.html @@ -0,0 +1,157 @@ + + + +is_base_of + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +
+template <class Base, class Derived>
+struct is_base_of : public true_type-or-false_type {};
+
+

+ Inherits: If Base is base class of type + Derived or if both types are the same then inherits from true_type, + otherwise inherits from false_type. +

+

+ This template will detect non-public base classes, and ambiguous base classes. +

+

+ Note that is_base_of<X,X> will always inherit from true_type. + This is the case even if X + is not a class type. This is a change in behaviour from Boost-1.33 + in order to track the Technical Report on C++ Library Extensions. +

+

+ Types Base and Derived must not be incomplete types. +

+

+ C++ Standard Reference: 10. +

+

+ Header: #include + <boost/type_traits/is_base_of.hpp> + or #include <boost/type_traits.hpp> +

+

+ Compiler Compatibility: If the compiler + does not support partial-specialization of class templates, then this template + can not be used with function types. There are some older compilers which + will produce compiler errors if Base + is a private base class of Derived, + or if Base is an ambiguous + base of Derived. These compilers + include Borland C++, older versions of Sun Forte C++, Digital Mars C++, and + older versions of EDG based compilers. +

+

+ Examples: +

+
+

+

+

+ Given: class Base{}; class Derived : + public Base{}; +

+

+

+
+
+

+

+

+ is_base_of<Base, Derived> + inherits from true_type. +

+

+

+
+
+

+

+

+ is_base_of<Base, Derived>::type is the type true_type. +

+

+

+
+
+

+

+

+ is_base_of<Base, Derived>::value is an integral constant expression + that evaluates to true. +

+

+

+
+
+

+

+

+ is_base_of<Base, Derived>::value is an integral constant expression + that evaluates to true. +

+

+

+
+
+

+

+

+ is_base_of<Base, Base>::value is an integral constant expression + that evaluates to true: a class is regarded as it's + own base. +

+

+

+
+
+

+

+

+ is_base_of<T>::value_type is the type bool. +

+

+

+
+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/reference/is_class.html b/doc/html/boost_typetraits/reference/is_class.html new file mode 100644 index 0000000..ee73ee6 --- /dev/null +++ b/doc/html/boost_typetraits/reference/is_class.html @@ -0,0 +1,141 @@ + + + +is_class + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +
+template <class T>
+struct is_class : public true_type-or-false_type {};
+
+

+ Inherits: If T is a (possibly cv-qualified) + class type then inherits from true_type, + otherwise inherits from false_type. +

+

+ C++ Standard Reference: 3.9.2 and 9.2. +

+

+ Header: #include + <boost/type_traits/is_class.hpp> + or #include <boost/type_traits.hpp> +

+

+ Compiler Compatibility: Without (some as + yet unspecified) help from the compiler, we cannot distinguish between union + and class types, as a result this type will erroneously inherit from true_type for + union types. See also is_union. + Currently (May 2005) only Visual C++ 8 has the necessary compiler intrinsics + to correctly identify union types, and therefore make is_class function correctly. +

+

+ Examples: +

+
+

+

+

+ Given: class MyClass; then: +

+

+

+
+
+

+

+

+ is_class<MyClass> + inherits from true_type. +

+

+

+
+
+

+

+

+ is_class<MyClass const>::type + is the type true_type. +

+

+

+
+
+

+

+

+ is_class<MyClass>::value is an integral constant expression + that evaluates to true. +

+

+

+
+
+

+

+

+ is_class<MyClass&>::value is an integral constant expression + that evaluates to false. +

+

+

+
+
+

+

+

+ is_class<MyClass*>::value is an integral constant expression + that evaluates to false. +

+

+

+
+
+

+

+

+ is_class<T>::value_type is the type bool. +

+

+

+
+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/reference/is_complex.html b/doc/html/boost_typetraits/reference/is_complex.html new file mode 100644 index 0000000..7b51fbf --- /dev/null +++ b/doc/html/boost_typetraits/reference/is_complex.html @@ -0,0 +1,63 @@ + + + +is_complex + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +
+template <class T>
+struct is_complex : public true_type-or-false_type {};
+
+

+ Inherits: If T + is a complex number type then true (of type std::complex<U> + for some type U), otherwise + false. +

+

+ C++ Standard Reference: 26.2. +

+

+ Header: #include + <boost/type_traits/is_complex.hpp> + or #include <boost/type_traits.hpp> +

+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/reference/is_compound.html b/doc/html/boost_typetraits/reference/is_compound.html new file mode 100644 index 0000000..d23e651 --- /dev/null +++ b/doc/html/boost_typetraits/reference/is_compound.html @@ -0,0 +1,124 @@ + + + +is_compound + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +
+template <class T>
+struct is_compound : public true_type-or-false_type {};
+
+

+ Inherits: If T is a (possibly cv-qualified) + compound type then inherits from true_type, + otherwise inherits from false_type. + Any type that is not a fundamental type is a compound type (see also is_fundamental). +

+

+ C++ Standard Reference: 3.9.2. +

+

+ Header: #include + <boost/type_traits/is_compound.hpp> + or #include <boost/type_traits.hpp> +

+

+ Examples: +

+
+

+

+

+ is_compound<MyClass> + inherits from true_type. +

+

+

+
+
+

+

+

+ is_compound<MyEnum>::type is the type true_type. +

+

+

+
+
+

+

+

+ is_compound<int*>::value is an integral constant expression + that evaluates to true. +

+

+

+
+
+

+

+

+ is_compound<int&>::value is an integral constant expression + that evaluates to true. +

+

+

+
+
+

+

+

+ is_compound<int>::value is an integral constant expression + that evaluates to false. +

+

+

+
+
+

+

+

+ is_compound<T>::value_type is the type bool. +

+

+

+
+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/reference/is_const.html b/doc/html/boost_typetraits/reference/is_const.html new file mode 100644 index 0000000..b774a2d --- /dev/null +++ b/doc/html/boost_typetraits/reference/is_const.html @@ -0,0 +1,134 @@ + + + +is_const + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +
+template <class T>
+struct is_const : public true_type-or-false_type {};
+
+

+ Inherits: If T is a (top level) const-qualified + type then inherits from true_type, + otherwise inherits from false_type. +

+

+ C++ Standard Reference: 3.9.3. +

+

+ Header: #include + <boost/type_traits/is_const.hpp> + or #include <boost/type_traits.hpp> +

+

+ Examples: +

+
+

+

+

+ is_const<int const> inherits from true_type. +

+

+

+
+
+

+

+

+ is_const<int const volatile>::type is the type true_type. +

+

+

+
+
+

+

+

+ is_const<int* const>::value is an integral constant expression + that evaluates to true. +

+

+

+
+
+

+

+

+ is_const<int const*>::value + is an integral constant expression that evaluates to false: + the const-qualifier is not at the top level in this case. +

+

+

+
+
+

+

+

+ is_const<int const&>::value + is an integral constant expression that evaluates to false: + the const-qualifier is not at the top level in this case. +

+

+

+
+
+

+

+

+ is_const<int>::value is an integral constant expression + that evaluates to false. +

+

+

+
+
+

+

+

+ is_const<T>::value_type is the type bool. +

+

+

+
+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/reference/is_convertible.html b/doc/html/boost_typetraits/reference/is_convertible.html new file mode 100644 index 0000000..363adc2 --- /dev/null +++ b/doc/html/boost_typetraits/reference/is_convertible.html @@ -0,0 +1,175 @@ + + + +is_convertible + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +
+template <class From, class To>
+struct is_convertible : public true_type-or-false_type {};
+
+

+ Inherits: If an imaginary lvalue of type + From is convertible to type + To then inherits from true_type, + otherwise inherits from false_type. +

+

+ Type From must not be an incomplete type. +

+

+ Type To must not be an incomplete, or function type. +

+

+ No types are considered to be convertible to array types or abstract-class + types. +

+

+ This template can not detect whether a converting-constructor is public or not: if type To + has a private converting constructor + from type From then instantiating + is_convertible<From, To> + will produce a compiler error. For this reason is_convertible + can not be used to determine whether a type has a public + copy-constructor or not. +

+

+ This template will also produce compiler errors if the conversion is ambiguous, + for example: +

+
+struct A {};
+struct B : A {};
+struct C : A {};
+struct D : B, C {};
+// This produces a compiler error, the conversion is ambiguous:
+bool const y = boost::is_convertible<D*,A*>::value;
+
+

+ C++ Standard Reference: 4 and 8.5. +

+

+ Compiler Compatibility: This template is + currently broken with Borland C++ Builder 5 (and earlier), for constructor-based + conversions, and for the Metrowerks 7 (and earlier) compiler in all cases. + If the compiler does not support is_abstract, + then the template parameter To + must not be an abstract type. +

+

+ Header: #include + <boost/type_traits/is_convertible.hpp> + or #include <boost/type_traits.hpp> +

+

+ Examples: +

+
+

+

+

+ is_convertible<int, double> + inherits from true_type. +

+

+

+
+
+

+

+

+ is_convertible<const int, double>::type + is the type true_type. +

+

+

+
+
+

+

+

+ is_convertible<int* const, int*>::value is an integral constant expression + that evaluates to true. +

+

+

+
+
+

+

+

+ is_convertible<int const*, int*>::value + is an integral constant expression that evaluates to false: + the conversion would require a const_cast. +

+

+

+
+
+

+

+

+ is_convertible<int const&, long>::value + is an integral constant expression that evaluates to true. +

+

+

+
+
+

+

+

+ is_convertible<int>::value is an integral constant expression + that evaluates to false. +

+

+

+
+
+

+

+

+ is_convertible<T>::value_type is the type bool. +

+

+

+
+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/reference/is_empty.html b/doc/html/boost_typetraits/reference/is_empty.html new file mode 100644 index 0000000..17cf607 --- /dev/null +++ b/doc/html/boost_typetraits/reference/is_empty.html @@ -0,0 +1,137 @@ + + + +is_empty + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +
+template <class T>
+struct is_empty : public true_type-or-false_type {};
+
+

+ Inherits: If T is an empty class type then + inherits from true_type, + otherwise inherits from false_type. +

+

+ C++ Standard Reference: 10p5. +

+

+ Header: #include + <boost/type_traits/is_empty.hpp> + or #include <boost/type_traits.hpp> +

+

+ Compiler Compatibility: In order to correctly + detect empty classes this trait relies on either: +

+
    +
  • + the compiler implementing zero sized empty base classes, or +
  • +
  • + the compiler providing intrinsics + to detect empty classes. +
  • +
+

+ Can not be used with incomplete types. +

+

+ Can not be used with union types, until is_union can be made to work. +

+

+ If the compiler does not support partial-specialization of class templates, + then this template can not be used with abstract types. +

+

+ Examples: +

+
+

+

+

+ Given: struct empty_class + {}; +

+

+

+
+
+

+

+

+ is_empty<empty_class> + inherits from true_type. +

+

+

+
+
+

+

+

+ is_empty<empty_class const>::type + is the type true_type. +

+

+

+
+
+

+

+

+ is_empty<empty_class>::value is an integral constant expression + that evaluates to true. +

+

+

+
+
+

+

+

+ is_empty<T>::value_type is the type bool. +

+

+

+
+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/reference/is_enum.html b/doc/html/boost_typetraits/reference/is_enum.html new file mode 100644 index 0000000..081eb22 --- /dev/null +++ b/doc/html/boost_typetraits/reference/is_enum.html @@ -0,0 +1,141 @@ + + + +is_enum + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +
+template <class T>
+struct is_enum : public true_type-or-false_type {};
+
+

+ Inherits: If T is a (possibly cv-qualified) + enum type then inherits from true_type, + otherwise inherits from false_type. +

+

+ C++ Standard Reference: 3.9.2 and 7.2. +

+

+ Header: #include + <boost/type_traits/is_enum.hpp> + or #include <boost/type_traits.hpp> +

+

+ Compiler Compatibility: Requires a correctly + functioning is_convertible + template; this means that is_enum is currently broken under Borland C++ Builder + 5, and for the Metrowerks compiler prior to version 8, other compilers should + handle this template just fine. +

+

+ Examples: +

+
+

+

+

+ Given: enum my_enum + { one, two }; +

+

+

+
+
+

+

+

+ is_enum<my_enum> + inherits from true_type. +

+

+

+
+
+

+

+

+ is_enum<my_enum const>::type + is the type true_type. +

+

+

+
+
+

+

+

+ is_enum<my_enum>::value is an integral constant expression + that evaluates to true. +

+

+

+
+
+

+

+

+ is_enum<my_enum&>::value is an integral constant expression + that evaluates to false. +

+

+

+
+
+

+

+

+ is_enum<my_enum*>::value is an integral constant expression + that evaluates to false. +

+

+

+
+
+

+

+

+ is_enum<T>::value_type is the type bool. +

+

+

+
+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/reference/is_floating_point.html b/doc/html/boost_typetraits/reference/is_floating_point.html new file mode 100644 index 0000000..e839de5 --- /dev/null +++ b/doc/html/boost_typetraits/reference/is_floating_point.html @@ -0,0 +1,103 @@ + + + +is_floating_point + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +
+template <class T>
+struct is_floating_point : public true_type-or-false_type {};
+
+

+ Inherits: If T is a (possibly cv-qualified) + floating point type then inherits from true_type, + otherwise inherits from false_type. +

+

+ C++ Standard Reference: 3.9.1p8. +

+

+ Header: #include + <boost/type_traits/is_floating_point.hpp> + or #include <boost/type_traits.hpp> +

+

+ Examples: +

+
+

+

+

+ is_floating_point<float> + inherits from true_type. +

+

+

+
+
+

+

+

+ is_floating_point<double>::type is the type true_type. +

+

+

+
+
+

+

+

+ is_floating_point<long double>::value + is an integral constant expression that evaluates to true. +

+

+

+
+
+

+

+

+ is_floating_point<T>::value_type is the type bool. +

+

+

+
+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/reference/is_function.html b/doc/html/boost_typetraits/reference/is_function.html new file mode 100644 index 0000000..79c3b36 --- /dev/null +++ b/doc/html/boost_typetraits/reference/is_function.html @@ -0,0 +1,191 @@ + + + +is_function + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +
+template <class T>
+struct is_function : public true_type-or-false_type {};
+
+

+ Inherits: If T is a (possibly cv-qualified) + function type then inherits from true_type, + otherwise inherits from false_type. + Note that this template does not detect pointers to functions, + or references to functions, these are detected by is_pointer and is_reference respectively: +

+
+typedef int f1();      // f1 is of function type.
+typedef int (f2*)();   // f2 is a pointer to a function.
+typedef int (f3&)();   // f3 is a reference to a function.
+
+

+ C++ Standard Reference: 3.9.2p1 and 8.3.5. +

+

+ Header: #include + <boost/type_traits/is_function.hpp> + or #include <boost/type_traits.hpp> +

+

+ Examples: +

+
+

+

+

+ is_function<int (void)> + inherits from true_type. +

+

+

+
+
+

+

+

+ is_function<long (double, int)>::type is the type true_type. +

+

+

+
+
+

+

+

+ is_function<long (double, int)>::value is an integral constant expression + that evaluates to true. +

+

+

+
+
+

+

+

+ is_function<long (*)(double, int)>::value is an integral constant expression + that evaluates to false: the argument in this case + is a pointer type, not a function type. +

+

+

+
+
+

+

+

+ is_function<long (&)(double, int)>::value is an integral constant expression + that evaluates to false: the argument in this case + is a reference to a function, not a function type. +

+

+

+
+
+

+

+

+ is_function<long (MyClass::*)(double, int)>::value is an integral constant expression + that evaluates to false: the argument in this case + is a pointer to a member function. +

+

+

+
+
+

+

+

+ is_function<T>::value_type is the type bool. +

+

+

+
+
+ + + + + +
[Tip]Tip
+

+ Don't confuse function-types with pointers to functions: +

+

+ typedef int + f(double); +

+

+ defines a function type, +

+

+ f foo; +

+

+ declares a prototype for a function of type f, +

+

+ f* + pf = + foo; +

+

+ f& + fr = + foo; +

+

+ declares a pointer and a reference to the function foo. +

+

+ If you want to detect whether some type is a pointer-to-function then use: +

+

+ is_function<remove_pointer<T>::type>::value + && is_pointer<T>::value +

+

+ or for pointers to member functions you can just use is_member_function_pointer + directly. +

+
+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/reference/is_fundamental.html b/doc/html/boost_typetraits/reference/is_fundamental.html new file mode 100644 index 0000000..9f78751 --- /dev/null +++ b/doc/html/boost_typetraits/reference/is_fundamental.html @@ -0,0 +1,108 @@ + + + +is_fundamental + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +
+template <class T>
+struct is_fundamental : public true_type-or-false_type {};
+
+

+ Inherits: If T is a (possibly cv-qualified) + fundamental type then inherits from true_type, + otherwise inherits from false_type. + Fundamental types include integral, floating point and void types (see also + is_integral, + is_floating_point + and is_void) +

+

+ C++ Standard Reference: 3.9.1. +

+

+ Header: #include + <boost/type_traits/is_fundamental.hpp> + or #include <boost/type_traits.hpp> +

+

+ Examples: +

+
+

+

+

+ is_fundamental<int)> + inherits from true_type. +

+

+

+
+
+

+

+

+ is_fundamental<double const>::type + is the type true_type. +

+

+

+
+
+

+

+

+ is_fundamental<void>::value is an integral constant expression + that evaluates to true. +

+

+

+
+
+

+

+

+ is_fundamental<T>::value_type is the type bool. +

+

+

+
+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/reference/is_integral.html b/doc/html/boost_typetraits/reference/is_integral.html new file mode 100644 index 0000000..e4dbb1e --- /dev/null +++ b/doc/html/boost_typetraits/reference/is_integral.html @@ -0,0 +1,104 @@ + + + +is_integral + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +
+template <class T>
+struct is_integral : public true_type-or-false_type {};
+
+

+ Inherits: If T is a (possibly cv-qualified) + integral type then inherits from true_type, + otherwise inherits from false_type. +

+

+ C++ Standard Reference: 3.9.1p7. +

+

+ Header: #include + <boost/type_traits/is_integral.hpp> + or #include <boost/type_traits.hpp> +

+

+ Examples: +

+
+

+

+

+ is_integral<int> + inherits from true_type. +

+

+

+
+
+

+

+

+ is_integral<const char>::type + is the type true_type. +

+

+

+
+
+

+

+

+ is_integral<long>::value is an integral constant expression + that evaluates to true. +

+

+

+
+
+

+

+

+ is_integral<T>::value_type is the type bool. +

+

+

+
+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/reference/is_member_function_pointer.html b/doc/html/boost_typetraits/reference/is_member_function_pointer.html new file mode 100644 index 0000000..d658c82 --- /dev/null +++ b/doc/html/boost_typetraits/reference/is_member_function_pointer.html @@ -0,0 +1,118 @@ + + + +is_member_function_pointer + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +
+template <class T>
+struct is_member_function_pointer : public true_type-or-false_type {};
+
+

+ Inherits: If T is a (possibly cv-qualified) + pointer to a member function then inherits from true_type, + otherwise inherits from false_type. +

+

+ C++ Standard Reference: 3.9.2 and 8.3.3. +

+

+ Header: #include + <boost/type_traits/is_member_function_pointer.hpp> + or #include <boost/type_traits.hpp> +

+

+ Examples: +

+
+

+

+

+ is_member_function_pointer<int (MyClass::*)(void)> inherits from true_type. +

+

+

+
+
+

+

+

+ is_member_function_pointer<int (MyClass::*)(char)>::type + is the type true_type. +

+

+

+
+
+

+

+

+ is_member_function_pointer<int (MyClass::*)(void)const>::value + is an integral constant expression that evaluates to true. +

+

+

+
+
+

+

+

+ is_member_function_pointer<int (MyClass::*)>::value + is an integral constant expression that evaluates to false: + the argument in this case is a pointer to a data member and not a member + function, see is_member_object_pointer + and is_member_pointer +

+

+

+
+
+

+

+

+ is_member_function_pointer<T>::value_type + is the type bool. +

+

+

+
+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/reference/is_member_object_pointer.html b/doc/html/boost_typetraits/reference/is_member_object_pointer.html new file mode 100644 index 0000000..47affae --- /dev/null +++ b/doc/html/boost_typetraits/reference/is_member_object_pointer.html @@ -0,0 +1,118 @@ + + + +is_member_object_pointer + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +
+template <class T>
+struct is_member_object_pointer : public true_type-or-false_type {};
+
+

+ Inherits: If T is a (possibly cv-qualified) + pointer to a member object (a data member) then inherits from true_type, + otherwise inherits from false_type. +

+

+ C++ Standard Reference: 3.9.2 and 8.3.3. +

+

+ Header: #include + <boost/type_traits/is_member_object_pointer.hpp> + or #include <boost/type_traits.hpp> +

+

+ Examples: +

+
+

+

+

+ is_member_object_pointer<int (MyClass::*)> inherits from true_type. +

+

+

+
+
+

+

+

+ is_member_object_pointer<double (MyClass::*)>::type + is the type true_type. +

+

+

+
+
+

+

+

+ is_member_object_pointer<const int (MyClass::*)>::value is an integral constant expression + that evaluates to true. +

+

+

+
+
+

+

+

+ is_member_object_pointer<int (MyClass::*)(void)>::value + is an integral constant expression that evaluates to false: + the argument in this case is a pointer to a member function and not a + member object, see is_member_function_pointer + and is_member_pointer +

+

+

+
+
+

+

+

+ is_member_object_pointer<T>::value_type + is the type bool. +

+

+

+
+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/reference/is_member_pointer.html b/doc/html/boost_typetraits/reference/is_member_pointer.html new file mode 100644 index 0000000..8af5ac9 --- /dev/null +++ b/doc/html/boost_typetraits/reference/is_member_pointer.html @@ -0,0 +1,104 @@ + + + +is_member_pointer + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +
+template <class T>
+struct is_member_pointer : public true_type-or-false_type {};
+
+

+ Inherits: If T is a (possibly cv-qualified) + pointer to a member (either a function or a data member) then inherits from + true_type, + otherwise inherits from false_type. +

+

+ C++ Standard Reference: 3.9.2 and 8.3.3. +

+

+ Header: #include + <boost/type_traits/is_member_pointer.hpp> + or #include <boost/type_traits.hpp> +

+

+ Examples: +

+
+

+

+

+ is_member_pointer<int (MyClass::*)> + inherits from true_type. +

+

+

+
+
+

+

+

+ is_member_pointer<int (MyClass::*)(char)>::type is the type true_type. +

+

+

+
+
+

+

+

+ is_member_pointer<int (MyClass::*)(void)const>::value is an integral constant expression + that evaluates to true. +

+

+

+
+
+

+

+

+ is_member_pointer<T>::value_type is the type bool. +

+

+

+
+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/reference/is_object.html b/doc/html/boost_typetraits/reference/is_object.html new file mode 100644 index 0000000..4db0775 --- /dev/null +++ b/doc/html/boost_typetraits/reference/is_object.html @@ -0,0 +1,147 @@ + + + +is_object + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +
+template <class T>
+struct is_object : public true_type-or-false_type {};
+
+

+ Inherits: If T is a (possibly cv-qualified) + object type then inherits from true_type, + otherwise inherits from false_type. + All types are object types except references, void, and function types. +

+

+ C++ Standard Reference: 3.9p9. +

+

+ Header: #include + <boost/type_traits/is_object.hpp> + or #include <boost/type_traits.hpp> +

+

+ Examples: +

+
+

+

+

+ is_object<int> + inherits from true_type. +

+

+

+
+
+

+

+

+ is_object<int*>::type is the type true_type. +

+

+

+
+
+

+

+

+ is_object<int (*)(void)>::value is an integral constant expression + that evaluates to true. +

+

+

+
+
+

+

+

+ is_object<int (MyClass::*)(void)const>::value is an integral constant expression + that evaluates to true. +

+

+

+
+
+

+

+

+ is_object<int &>::value is an integral constant expression + that evaluates to false: reference types are not + objects +

+

+

+
+
+

+

+

+ is_object<int (double)>::value is an integral constant expression + that evaluates to false: function types are not + objects +

+

+

+
+
+

+

+

+ is_object<const void>::value + is an integral constant expression that evaluates to false: + void is not an object type +

+

+

+
+
+

+

+

+ is_object<T>::value_type is the type bool. +

+

+

+
+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/reference/is_pod.html b/doc/html/boost_typetraits/reference/is_pod.html new file mode 100644 index 0000000..848267b --- /dev/null +++ b/doc/html/boost_typetraits/reference/is_pod.html @@ -0,0 +1,134 @@ + + + +is_pod + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +
+template <class T>
+struct is_pod : public true_type-or-false_type {};
+
+

+ Inherits: If T is a (possibly cv-qualified) + POD type then inherits from true_type, + otherwise inherits from false_type. +

+

+ POD stands for "Plain old data". Arithmetic types, and enumeration + types, a pointers and pointer to members are all PODs. Classes and unions + can also be POD's if they have no non-static data members that are of reference + or non-POD type, no user defined constructors, no user defined assignment + operators, no private or protected non-static data members, no virtual functions + and no base classes. Finally, a cv-qualified POD is still a POD, as is an + array of PODs. +

+

+ C++ Standard Reference: 3.9p10 and 9p4 (Note + that POD's are also aggregates, see 8.5.1). +

+

+ Compiler Compatibility: If the compiler + does not support partial-specialization of class templates, then this template + can not be used with function types. +

+

+ Without some (as yet unspecified) help from the compiler, ispod + will never report that a class or struct is a POD; this is always safe, if + possibly sub-optimal. Currently (May 2005) only MWCW 9 and Visual C++ 8 have + the necessary compiler-_intrinsics. +

+

+ Header: #include + <boost/type_traits/is_pod.hpp> + or #include <boost/type_traits.hpp> +

+

+ Examples: +

+
+

+

+

+ is_pod<int> + inherits from true_type. +

+

+

+
+
+

+

+

+ is_pod<char*>::type is the type true_type. +

+

+

+
+
+

+

+

+ is_pod<int (*)(long)>::value is an integral constant expression + that evaluates to true. +

+

+

+
+
+

+

+

+ is_pod<MyClass>::value is an integral constant expression + that evaluates to false. +

+

+

+
+
+

+

+

+ is_pod<T>::value_type is the type bool. +

+

+

+
+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/reference/is_pointer.html b/doc/html/boost_typetraits/reference/is_pointer.html new file mode 100644 index 0000000..9f1fa46 --- /dev/null +++ b/doc/html/boost_typetraits/reference/is_pointer.html @@ -0,0 +1,140 @@ + + + +is_pointer + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +
+template <class T>
+struct is_pointer : public true_type-or-false_type {};
+
+

+ Inherits: If T is a (possibly cv-qualified) + pointer type (includes function pointers, but excludes pointers to members) + then inherits from true_type, + otherwise inherits from false_type. +

+

+ C++ Standard Reference: 3.9.2p2 and 8.3.1. +

+

+ Header: #include + <boost/type_traits/is_pointer.hpp> + or #include <boost/type_traits.hpp> +

+

+ Examples: +

+
+

+

+

+ is_pointer<int*> + inherits from true_type. +

+

+

+
+
+

+

+

+ is_pointer<char* const>::type is the type true_type. +

+

+

+
+
+

+

+

+ is_pointer<int (*)(long)>::value is an integral constant expression + that evaluates to true. +

+

+

+
+
+

+

+

+ is_pointer<int (MyClass::*)(long)>::value is an integral constant expression + that evaluates to false. +

+

+

+
+
+

+

+

+ is_pointer<int (MyClass::*)>::value is an integral constant expression + that evaluates to false. +

+

+

+
+
+

+

+

+ is_pointer<T>::value_type is the type bool. +

+

+

+
+
+ + + + + +
[Important]Important

+ is_pointer detects "real" + pointer types only, and not smart pointers. Users + should not specialise is_pointer + for smart pointer types, as doing so may cause Boost (and other third party) + code to fail to function correctly. Users wanting a trait to detect smart + pointers should create their own. However, note that there is no way in + general to auto-magically detect smart pointer types, so such a trait would + have to be partially specialised for each supported smart pointer type. +

+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/reference/is_polymorphic.html b/doc/html/boost_typetraits/reference/is_polymorphic.html new file mode 100644 index 0000000..5f48303 --- /dev/null +++ b/doc/html/boost_typetraits/reference/is_polymorphic.html @@ -0,0 +1,120 @@ + + + +is_polymorphic + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +
+template <class T>
+struct is_polymorphic : public true_type-or-false_type {};
+
+

+ Inherits: If T is a (possibly cv-qualified) + polymorphic type then inherits from true_type, + otherwise inherits from false_type. + Type T must be a complete + type. +

+

+ C++ Standard Reference: 10.3. +

+

+ Compiler Compatibility: The implementation + requires some knowledge of the compilers ABI, it does actually seem to work + with the majority of compilers though. +

+

+ Header: #include + <boost/type_traits/is_polymorphic.hpp> + or #include <boost/type_traits.hpp> +

+

+ Examples: +

+
+

+

+

+ Given: class poly{ virtual ~poly(); }; +

+

+

+
+
+

+

+

+ is_polymorphic<poly> + inherits from true_type. +

+

+

+
+
+

+

+

+ is_polymorphic<poly const>::type + is the type true_type. +

+

+

+
+
+

+

+

+ is_polymorphic<poly>::value is an integral constant expression + that evaluates to true. +

+

+

+
+
+

+

+

+ is_polymorphic<T>::value_type is the type bool. +

+

+

+
+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/reference/is_reference.html b/doc/html/boost_typetraits/reference/is_reference.html new file mode 100644 index 0000000..c4e4b58 --- /dev/null +++ b/doc/html/boost_typetraits/reference/is_reference.html @@ -0,0 +1,111 @@ + + + +is_reference + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +
+template <class T>
+struct is_reference : public true_type-or-false_type {};
+
+

+ Inherits: If T is a reference pointer type + then inherits from true_type, + otherwise inherits from false_type. +

+

+ C++ Standard Reference: 3.9.2 and 8.3.2. +

+

+ Compiler Compatibility: If the compiler + does not support partial-specialization of class templates, then this template + may report the wrong result for function types, and for types that are both + const and volatile qualified. +

+

+ Header: #include + <boost/type_traits/is_reference.hpp> + or #include <boost/type_traits.hpp> +

+

+ Examples: +

+
+

+

+

+ is_reference<int&> + inherits from true_type. +

+

+

+
+
+

+

+

+ is_reference<int const&>::type + is the type true_type. +

+

+

+
+
+

+

+

+ is_reference<int (&)(long)>::value is an integral constant expression + that evaluates to true (the argument in this case + is a reference to a function). +

+

+

+
+
+

+

+

+ is_reference<T>::value_type is the type bool. +

+

+

+
+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/reference/is_same.html b/doc/html/boost_typetraits/reference/is_same.html new file mode 100644 index 0000000..efda38a --- /dev/null +++ b/doc/html/boost_typetraits/reference/is_same.html @@ -0,0 +1,125 @@ + + + +is_same + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +
+template <class T, class U>
+struct is_same : public true_type-or-false_type {};
+
+

+ Inherits: If T and U are the same types + then inherits from true_type, + otherwise inherits from false_type. +

+

+ Header: #include + <boost/type_traits/is_same.hpp> + or #include <boost/type_traits.hpp> +

+

+ Compiler Compatibility: If the compiler + does not support partial-specialization of class templates, then this template + can not be used with abstract, incomplete or function types. +

+

+ Examples: +

+
+

+

+

+ is_same<int, int> + inherits from true_type. +

+

+

+
+
+

+

+

+ is_same<int, int>::type is the type true_type. +

+

+

+
+
+

+

+

+ is_same<int, int>::value is an integral constant expression + that evaluates to true. +

+

+

+
+
+

+

+

+ is_same<int const, int>::value + is an integral constant expression that evaluates to false. +

+

+

+
+
+

+

+

+ is_same<int&, int>::value is an integral constant expression + that evaluates to false. +

+

+

+
+
+

+

+

+ is_same<T>::value_type is the type bool. +

+

+

+
+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/reference/is_scalar.html b/doc/html/boost_typetraits/reference/is_scalar.html new file mode 100644 index 0000000..b791cbc --- /dev/null +++ b/doc/html/boost_typetraits/reference/is_scalar.html @@ -0,0 +1,140 @@ + + + +is_scalar + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +
+template <class T>
+struct is_scalar : public true_type-or-false_type {};
+
+

+ Inherits: If T is a (possibly cv-qualified) + scalar type then inherits from true_type, + otherwise inherits from false_type. + Scalar types include integral, floating point, enumeration, pointer, and + pointer-to-member types. +

+

+ C++ Standard Reference: 3.9p10. +

+

+ Header: #include + <boost/type_traits/is_scalar.hpp> + or #include <boost/type_traits.hpp> +

+

+ Compiler Compatibility: If the compiler + does not support partial-specialization of class templates, then this template + can not be used with function types. +

+

+ Examples: +

+
+

+

+

+ is_scalar<int*> + inherits from true_type. +

+

+

+
+
+

+

+

+ is_scalar<int>::type is the type true_type. +

+

+

+
+
+

+

+

+ is_scalar<double>::value is an integral constant expression + that evaluates to true. +

+

+

+
+
+

+

+

+ is_scalar<int (*)(long)>::value is an integral constant expression + that evaluates to true. +

+

+

+
+
+

+

+

+ is_scalar<int (MyClass::*)(long)>::value is an integral constant expression + that evaluates to true. +

+

+

+
+
+

+

+

+ is_scalar<int (MyClass::*)>::value is an integral constant expression + that evaluates to true. +

+

+

+
+
+

+

+

+ is_scalar<T>::value_type is the type bool. +

+

+

+
+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/reference/is_signed.html b/doc/html/boost_typetraits/reference/is_signed.html new file mode 100644 index 0000000..ee0a985 --- /dev/null +++ b/doc/html/boost_typetraits/reference/is_signed.html @@ -0,0 +1,134 @@ + + + +is_signed + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +
+template <class T>
+struct is_signed : public true_type-or-false_type {};
+
+

+ Inherits: If T is an signed integer type + or an enumerated type with an underlying signed integer type, then inherits + from true_type, + otherwise inherits from false_type. +

+

+ C++ Standard Reference: 3.9.1, 7.2. +

+

+ Header: #include + <boost/type_traits/is_signed.hpp> + or #include <boost/type_traits.hpp> +

+

+ Examples: +

+
+

+

+

+ is_signed<int> + inherits from true_type. +

+

+

+
+
+

+

+

+ is_signed<int const volatile>::type is the type true_type. +

+

+

+
+
+

+

+

+ is_signed<unsigned int>::value + is an integral constant expression that evaluates to false. +

+

+

+
+
+

+

+

+ is_signed<myclass>::value is an integral constant expression + that evaluates to false. +

+

+

+
+
+

+

+

+ is_signed<char>::value is an integral constant expression + whose value depends upon the signedness of type char. +

+

+

+
+
+

+

+

+ is_signed<long long>::value + is an integral constant expression that evaluates to true. +

+

+

+
+
+

+

+

+ is_signed<T>::value_type is the type bool. +

+

+

+
+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/reference/is_stateless.html b/doc/html/boost_typetraits/reference/is_stateless.html new file mode 100644 index 0000000..a81c185 --- /dev/null +++ b/doc/html/boost_typetraits/reference/is_stateless.html @@ -0,0 +1,90 @@ + + + +is_stateless + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +
+template <class T>
+struct is_stateless : public true_type-or-false_type {};
+
+

+ Inherits: Ff T is a stateless type then + inherits from true_type, + otherwise from false_type. +

+

+ Type T must be a complete type. +

+

+ A stateless type is a type that has no storage and whose constructors and + destructors are trivial. That means that is_stateless + only inherits from true_type + if the following expression is true: +

+
+::boost::has_trivial_constructor<T>::value
+&& ::boost::has_trivial_copy<T>::value
+&& ::boost::has_trivial_destructor<T>::value
+&& ::boost::is_class<T>::value
+&& ::boost::is_empty<T>::value
+
+

+ C++ Standard Reference: 3.9p10. +

+

+ Header: #include + <boost/type_traits/is_stateless.hpp> + or #include <boost/type_traits.hpp> +

+

+ Compiler Compatibility: If the compiler + does not support partial-specialization of class templates, then this template + can not be used with function types. +

+

+ Without some (as yet unspecified) help from the compiler, is_stateless will + never report that a class or struct is stateless; this is always safe, if + possibly sub-optimal. Currently (May 2005) only MWCW 9 and Visual C++ 8 have + the necessary compiler intrinsics + to make this template work automatically. +

+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/reference/is_union.html b/doc/html/boost_typetraits/reference/is_union.html new file mode 100644 index 0000000..e74b394 --- /dev/null +++ b/doc/html/boost_typetraits/reference/is_union.html @@ -0,0 +1,127 @@ + + + +is_union + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +
+template <class T>
+struct is_union : public true_type-or-false_type {};
+
+

+ Inherits: If T is a (possibly cv-qualified) + union type then inherits from true_type, + otherwise inherits from false_type. + Currently requires some kind of compiler support, otherwise unions are identified + as classes. +

+

+ C++ Standard Reference: 3.9.2 and 9.5. +

+

+ Compiler Compatibility: Without (some as + yet unspecified) help from the compiler, we cannot distinguish between union + and class types using only standard C++, as a result this type will never + inherit from true_type, + unless the user explicitly specializes the template for their user-defined + union types, or unless the compiler supplies some unspecified intrinsic that + implements this functionality. Currently (May 2005) only Visual C++ 8 has + the necessary compiler intrinsics + to make this trait "just work" without user intervention. +

+

+ Header: #include + <boost/type_traits/is_union.hpp> + or #include <boost/type_traits.hpp> +

+

+ Examples: +

+
+

+

+

+ is_union<void> + inherits from true_type. +

+

+

+
+
+

+

+

+ is_union<const void>::type + is the type true_type. +

+

+

+
+
+

+

+

+ is_union<void>::value is an integral constant expression + that evaluates to true. +

+

+

+
+
+

+

+

+ is_union<void*>::value is an integral constant expression + that evaluates to false. +

+

+

+
+
+

+

+

+ is_union<T>::value_type is the type bool. +

+

+

+
+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/reference/is_unsigned.html b/doc/html/boost_typetraits/reference/is_unsigned.html new file mode 100644 index 0000000..a8f3121 --- /dev/null +++ b/doc/html/boost_typetraits/reference/is_unsigned.html @@ -0,0 +1,136 @@ + + + +is_unsigned + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +
+template <class T>
+struct is_unsigned : public true_type-or-false_type {};
+
+

+ Inherits: If T is an unsigned integer type + or an enumerated type with an underlying unsigned integer type, then inherits + from true_type, + otherwise inherits from false_type. +

+

+ C++ Standard Reference: 3.9.1, 7.2. +

+

+ Header: #include + <boost/type_traits/is_unsigned.hpp> + or #include <boost/type_traits.hpp> +

+

+ Examples: +

+
+

+

+

+ is_unsigned<unsigned int> inherits from true_type. +

+

+

+
+
+

+

+

+ is_unsigned<unsigned int + const volatile>::type + is the type true_type. +

+

+

+
+
+

+

+

+ is_unsigned<int>::value is an integral constant expression + that evaluates to false. +

+

+

+
+
+

+

+

+ is_unsigned<myclass>::value is an integral constant expression + that evaluates to false. +

+

+

+
+
+

+

+

+ is_unsigned<char>::value is an integral constant expression + whose value depends upon the signedness of type char. +

+

+

+
+
+

+

+

+ is_unsigned<unsigned long + long>::value is an integral constant expression + that evaluates to true. +

+

+

+
+
+

+

+

+ is_unsigned<T>::value_type is the type bool. +

+

+

+
+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/reference/is_void.html b/doc/html/boost_typetraits/reference/is_void.html new file mode 100644 index 0000000..4e06720 --- /dev/null +++ b/doc/html/boost_typetraits/reference/is_void.html @@ -0,0 +1,114 @@ + + + +is_void + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +
+template <class T>
+struct is_void : public true_type-or-false_type {};
+
+

+ Inherits: If T is a (possibly cv-qualified) + void type then inherits from true_type, + otherwise inherits from false_type. +

+

+ C++ Standard Reference: 3.9.1p9. +

+

+ Header: #include + <boost/type_traits/is_void.hpp> + or #include <boost/type_traits.hpp> +

+

+ Examples: +

+
+

+

+

+ is_void<void> + inherits from true_type. +

+

+

+
+
+

+

+

+ is_void<const void>::type + is the type true_type. +

+

+

+
+
+

+

+

+ is_void<void>::value is an integral constant expression + that evaluates to true. +

+

+

+
+
+

+

+

+ is_void<void*>::value is an integral constant expression + that evaluates to false. +

+

+

+
+
+

+

+

+ is_void<T>::value_type is the type bool. +

+

+

+
+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/reference/is_volatile.html b/doc/html/boost_typetraits/reference/is_volatile.html new file mode 100644 index 0000000..450a824 --- /dev/null +++ b/doc/html/boost_typetraits/reference/is_volatile.html @@ -0,0 +1,114 @@ + + + +is_volatile + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +
+template <class T>
+struct is_volatile : public true_type-or-false_type {};
+
+

+ Inherits: If T is a (top level) volatile-qualified + type then inherits from true_type, + otherwise inherits from false_type. +

+

+ C++ Standard Reference: 3.9.3. +

+

+ Header: #include + <boost/type_traits/is_volatile.hpp> + or #include <boost/type_traits.hpp> +

+

+ Examples: +

+
+

+

+

+ is_volatile<volatile int> inherits from true_type. +

+

+

+
+
+

+

+

+ is_volatile<const volatile + int>::type is the type true_type. +

+

+

+
+
+

+

+

+ is_volatile<int* volatile>::value is an integral constant expression + that evaluates to true. +

+

+

+
+
+

+

+

+ is_volatile<int volatile*>::value + is an integral constant expression that evaluates to false: + the volatile qualifier is not at the top level in this case. +

+

+

+
+
+

+

+

+ is_volatile<T>::value_type is the type bool. +

+

+

+
+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/reference/make_signed.html b/doc/html/boost_typetraits/reference/make_signed.html new file mode 100644 index 0000000..d7ee39c --- /dev/null +++ b/doc/html/boost_typetraits/reference/make_signed.html @@ -0,0 +1,160 @@ + + + +make_signed + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +
+template <class T>
+struct make_signed
+{
+   typedef see-below type;
+};
+
+

+ type: If T is a signed integer type then + the same type as T, if T is an unsigned integer type then the corresponding + signed type. Otherwise if T is an enumerated or character type (char or wchar_t) + then a signed integer type with the same width as T. +

+

+ If T has any cv-qualifiers then these are also present on the result type. +

+

+ Requires: T must be an integer or enumerated + type, and must not be the type bool. +

+

+ C++ Standard Reference: 3.9.1. +

+

+ Header: #include + <boost/type_traits/make_signed.hpp> + or #include <boost/type_traits.hpp> +

+
+

Table 1.15. Examples

+
++++ + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

+ Expression +

+
+

+ Result Type +

+
+

+ make_signed<int>::type +

+
+

+ int +

+
+

+ make_signed<unsigned int + const>::type +

+
+

+ int const +

+
+

+ make_signed<const unsigned + long long>::type +

+
+

+ const long + long +

+
+

+ make_signed<my_enum>::type +

+
+

+ A signed integer type with the same width as the enum. +

+
+

+ make_signed<wchar_t>::type +

+
+

+ A signed integer type with the same width as wchar_t. +

+
+
+
+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/reference/make_unsigned.html b/doc/html/boost_typetraits/reference/make_unsigned.html new file mode 100644 index 0000000..18eb27f --- /dev/null +++ b/doc/html/boost_typetraits/reference/make_unsigned.html @@ -0,0 +1,161 @@ + + + +make_unsigned + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +
+template <class T>
+struct make_unsigned
+{
+   typedef see-below type;
+};
+
+

+ type: If T is a unsigned integer type then + the same type as T, if T is an signed integer type then the corresponding + unsigned type. Otherwise if T is an enumerated or character type (char or + wchar_t) then an unsigned integer type with the same width as T. +

+

+ If T has any cv-qualifiers then these are also present on the result type. +

+

+ Requires: T must be an integer or enumerated + type, and must not be the type bool. +

+

+ C++ Standard Reference: 3.9.1. +

+

+ Header: #include + <boost/type_traits/make_unsigned.hpp> + or #include <boost/type_traits.hpp> +

+
+

Table 1.16. Examples

+
++++ + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

+ Expression +

+
+

+ Result Type +

+
+

+ make_signed<int>::type +

+
+

+ unsigned int +

+
+

+ make_signed<unsigned int + const>::type +

+
+

+ unsigned int + const +

+
+

+ make_signed<const unsigned + long long>::type +

+
+

+ const unsigned + long long +

+
+

+ make_signed<my_enum>::type +

+
+

+ An unsigned integer type with the same width as the enum. +

+
+

+ make_signed<wchar_t>::type +

+
+

+ An unsigned integer type with the same width as wchar_t. +

+
+
+
+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/reference/promote.html b/doc/html/boost_typetraits/reference/promote.html new file mode 100644 index 0000000..7e8a7ed --- /dev/null +++ b/doc/html/boost_typetraits/reference/promote.html @@ -0,0 +1,130 @@ + + + +promote + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +
+template <class T>
+struct promote
+{
+   typedef see-below type;
+};
+
+

+ type: If integral or floating point promotion + can be applied to an rvalue of type T, + then applies integral and floating point promotions to T + and keeps cv-qualifiers of T, + otherwise leaves T unchanged. + See also integral_promotion + and floating_point_promotion. +

+

+ C++ Standard Reference: 4.5 except 4.5/3 + (integral bit-field) and 4.6. +

+

+ Header: #include + <boost/type_traits/promote.hpp> + or #include <boost/type_traits.hpp> +

+
+

Table 1.17. Examples

+
++++ + + + + + + + + + + + + + + + + + + +
+

+ Expression +

+
+

+ Result Type +

+
+

+ promote<short volatile>::type +

+
+

+ int volatile +

+
+

+ promote<float const>::type +

+
+

+ double const +

+
+

+ promote<short&>::type +

+
+

+ short& +

+
+
+
+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/reference/rank.html b/doc/html/boost_typetraits/reference/rank.html new file mode 100644 index 0000000..177322f --- /dev/null +++ b/doc/html/boost_typetraits/reference/rank.html @@ -0,0 +1,125 @@ + + + +rank + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+

+ rank +

+
+template <class T>
+struct rank : public integral_constant<std::size_t, RANK(T)> {};
+
+

+ Inherits: Class template rank inherits from + integral_constant<std::size_t, RANK(T)>, + where RANK(T) is the + number of array dimensions in type T. +

+

+ If T is not an array type, + then RANK(T) is zero. +

+

+ Header: #include + <boost/type_traits/rank.hpp> + or #include <boost/type_traits.hpp> +

+

+ Examples: +

+
+

+

+

+ rank<int[]> + inherits from integral_constant<std::size_t, 1>. +

+

+

+
+
+

+

+

+ rank<double[2][3][4]>::type is the type integral_constant<std::size_t, 3>. +

+

+

+
+
+

+

+

+ rank<int[1]>::value + is an integral constant expression that evaluates to 1. +

+

+

+
+
+

+

+

+ rank<int[][2]>::value is an integral constant expression + that evaluates to 2. +

+

+

+
+
+

+

+

+ rank<int*>::value is an integral constant expression + that evaluates to 0. +

+

+

+
+
+

+

+

+ rank<T>::value_type is the type std::size_t. +

+

+

+
+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/reference/remove_all_extents.html b/doc/html/boost_typetraits/reference/remove_all_extents.html new file mode 100644 index 0000000..0c578e3 --- /dev/null +++ b/doc/html/boost_typetraits/reference/remove_all_extents.html @@ -0,0 +1,157 @@ + + + +remove_all_extents + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +
+template <class T>
+struct remove_all_extents
+{
+   typedef see-below type;
+};
+
+

+ type: If T + is an array type, then removes all of the array bounds on T, + otherwise leaves T unchanged. +

+

+ C++ Standard Reference: 8.3.4. +

+

+ Compiler Compatibility: If the compiler + does not support partial specialization of class-templates then this template + will compile, but the member type + will always be the same as type T + except where compiler + workarounds have been applied. +

+

+ Header: #include + <boost/type_traits/remove_all_extents.hpp> + or #include <boost/type_traits.hpp> +

+
+

Table 1.18. Examples

+
++++ + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

+ Expression +

+
+

+ Result Type +

+
+

+ remove_all_extents<int>::type +

+
+

+ int +

+
+

+ remove_all_extents<int const[2]>::type +

+
+

+ int const +

+
+

+ remove_all_extents<int[][2]>::type +

+
+

+ int +

+
+

+ remove_all_extents<int[2][3][4]>::type +

+
+

+ int +

+
+

+ remove_all_extents<int const*>::type +

+
+

+ int const* +

+
+
+
+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/reference/remove_const.html b/doc/html/boost_typetraits/reference/remove_const.html new file mode 100644 index 0000000..d9701f5 --- /dev/null +++ b/doc/html/boost_typetraits/reference/remove_const.html @@ -0,0 +1,157 @@ + + + +remove_const + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +
+template <class T>
+struct remove_const
+{
+   typedef see-below type;
+};
+
+

+ type: The same type as T, + but with any top level const-qualifier removed. +

+

+ C++ Standard Reference: 3.9.3. +

+

+ Compiler Compatibility: If the compiler + does not support partial specialization of class-templates then this template + will compile, but the member type + will always be the same as type T + except where compiler + workarounds have been applied. +

+

+ Header: #include + <boost/type_traits/remove_const.hpp> + or #include <boost/type_traits.hpp> +

+
+

Table 1.19. Examples

+
++++ + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

+ Expression +

+
+

+ Result Type +

+
+

+ remove_const<int>::type +

+
+

+ int +

+
+

+ remove_const<int const>::type +

+
+

+ int +

+
+

+ remove_const<int const + volatile>::type +

+
+

+ int volatile +

+
+

+ remove_const<int const&>::type +

+
+

+ int const& +

+
+

+ remove_const<int const*>::type +

+
+

+ int const* +

+
+
+
+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/reference/remove_cv.html b/doc/html/boost_typetraits/reference/remove_cv.html new file mode 100644 index 0000000..5ddec45 --- /dev/null +++ b/doc/html/boost_typetraits/reference/remove_cv.html @@ -0,0 +1,157 @@ + + + +remove_cv + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +
+template <class T>
+struct remove_cv
+{
+   typedef see-below type;
+};
+
+

+ type: The same type as T, + but with any top level cv-qualifiers removed. +

+

+ C++ Standard Reference: 3.9.3. +

+

+ Compiler Compatibility: If the compiler + does not support partial specialization of class-templates then this template + will compile, but the member type + will always be the same as type T + except where compiler + workarounds have been applied. +

+

+ Header: #include + <boost/type_traits/remove_cv.hpp> + or #include <boost/type_traits.hpp> +

+
+

Table 1.20. Examples

+
++++ + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

+ Expression +

+
+

+ Result Type +

+
+

+ remove_cv<int>::type +

+
+

+ int +

+
+

+ remove_cv<int const>::type +

+
+

+ int +

+
+

+ remove_cv<int const + volatile>::type +

+
+

+ int +

+
+

+ remove_cv<int const&>::type +

+
+

+ int const& +

+
+

+ remove_cv<int const*>::type +

+
+

+ int const* +

+
+
+
+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/reference/remove_extent.html b/doc/html/boost_typetraits/reference/remove_extent.html new file mode 100644 index 0000000..1d79cf4 --- /dev/null +++ b/doc/html/boost_typetraits/reference/remove_extent.html @@ -0,0 +1,157 @@ + + + +remove_extent + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +
+template <class T>
+struct remove_extent
+{
+   typedef see-below type;
+};
+
+

+ type: If T + is an array type, then removes the topmost array bound, otherwise leaves + T unchanged. +

+

+ C++ Standard Reference: 8.3.4. +

+

+ Compiler Compatibility: If the compiler + does not support partial specialization of class-templates then this template + will compile, but the member type + will always be the same as type T + except where compiler + workarounds have been applied. +

+

+ Header: #include + <boost/type_traits/remove_extent.hpp> + or #include <boost/type_traits.hpp> +

+
+

Table 1.21. Examples

+
++++ + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

+ Expression +

+
+

+ Result Type +

+
+

+ remove_extent<int>::type +

+
+

+ int +

+
+

+ remove_extent<int const[2]>::type +

+
+

+ int const +

+
+

+ remove_extent<int[2][4]>::type +

+
+

+ int[4] +

+
+

+ remove_extent<int[][2]>::type +

+
+

+ int[2] +

+
+

+ remove_extent<int const*>::type +

+
+

+ int const* +

+
+
+
+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/reference/remove_pointer.html b/doc/html/boost_typetraits/reference/remove_pointer.html new file mode 100644 index 0000000..f651a79 --- /dev/null +++ b/doc/html/boost_typetraits/reference/remove_pointer.html @@ -0,0 +1,156 @@ + + + +remove_pointer + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +
+template <class T>
+struct remove_pointer
+{
+   typedef see-below type;
+};
+
+

+ type: The same type as T, + but with any pointer modifier removed. +

+

+ C++ Standard Reference: 8.3.1. +

+

+ Compiler Compatibility: If the compiler + does not support partial specialization of class-templates then this template + will compile, but the member type + will always be the same as type T + except where compiler + workarounds have been applied. +

+

+ Header: #include + <boost/type_traits/remove_pointer.hpp> + or #include <boost/type_traits.hpp> +

+
+

Table 1.22. Examples

+
++++ + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

+ Expression +

+
+

+ Result Type +

+
+

+ remove_pointer<int>::type +

+
+

+ int +

+
+

+ remove_pointer<int const*>::type +

+
+

+ int const +

+
+

+ remove_pointer<int const**>::type +

+
+

+ int const* +

+
+

+ remove_pointer<int&>::type +

+
+

+ int& +

+
+

+ remove_pointer<int*&>::type +

+
+

+ int*& +

+
+
+
+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/reference/remove_reference.html b/doc/html/boost_typetraits/reference/remove_reference.html new file mode 100644 index 0000000..4aa377e --- /dev/null +++ b/doc/html/boost_typetraits/reference/remove_reference.html @@ -0,0 +1,144 @@ + + + +remove_reference + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +
+template <class T>
+struct remove_reference
+{
+   typedef see-below type;
+};
+
+

+ type: The same type as T, + but with any reference modifier removed. +

+

+ C++ Standard Reference: 8.3.2. +

+

+ Compiler Compatibility: If the compiler + does not support partial specialization of class-templates then this template + will compile, but the member type + will always be the same as type T + except where compiler + workarounds have been applied. +

+

+ Header: #include + <boost/type_traits/remove_reference.hpp> + or #include <boost/type_traits.hpp> +

+
+

Table 1.23. Examples

+
++++ + + + + + + + + + + + + + + + + + + + + + + +
+

+ Expression +

+
+

+ Result Type +

+
+

+ remove_reference<int>::type +

+
+

+ int +

+
+

+ remove_reference<int const&>::type +

+
+

+ int const +

+
+

+ remove_reference<int*>::type +

+
+

+ int* +

+
+

+ remove_reference<int*&>::type +

+
+

+ int* +

+
+
+
+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/reference/remove_volatile.html b/doc/html/boost_typetraits/reference/remove_volatile.html new file mode 100644 index 0000000..333f9d3 --- /dev/null +++ b/doc/html/boost_typetraits/reference/remove_volatile.html @@ -0,0 +1,157 @@ + + + +remove_volatile + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +
+template <class T>
+struct remove_volatile
+{
+   typedef see-below type;
+};
+
+

+ type: The same type as T, + but with any top level volatile-qualifier removed. +

+

+ C++ Standard Reference: 3.9.3. +

+

+ Compiler Compatibility: If the compiler + does not support partial specialization of class-templates then this template + will compile, but the member type + will always be the same as type T + except where compiler + workarounds have been applied. +

+

+ Header: #include + <boost/type_traits/remove_volatile.hpp> + or #include <boost/type_traits.hpp> +

+
+

Table 1.24. Examples

+
++++ + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

+ Expression +

+
+

+ Result Type +

+
+

+ remove_volatile<int>::type +

+
+

+ int +

+
+

+ remove_volatile<int volatile>::type +

+
+

+ int +

+
+

+ remove_volatile<int const + volatile>::type +

+
+

+ int const +

+
+

+ remove_volatile<int volatile&>::type +

+
+

+ int const& +

+
+

+ remove_volatile<int volatile*>::type +

+
+

+ int const* +

+
+
+
+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/reference/type_with_alignment.html b/doc/html/boost_typetraits/reference/type_with_alignment.html new file mode 100644 index 0000000..c0cabeb --- /dev/null +++ b/doc/html/boost_typetraits/reference/type_with_alignment.html @@ -0,0 +1,61 @@ + + + +type_with_alignment + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +
+template <std::size_t Align>
+struct type_with_alignment
+{
+   typedef see-below type;
+};
+
+

+ type: a built-in or POD type with an alignment + that is a multiple of Align. +

+

+ Header: #include + <boost/type_traits/type_with_alignment.hpp> + or #include <boost/type_traits.hpp> +

+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/boost_typetraits/user_defined.html b/doc/html/boost_typetraits/user_defined.html new file mode 100644 index 0000000..aaa5add --- /dev/null +++ b/doc/html/boost_typetraits/user_defined.html @@ -0,0 +1,80 @@ + + + +User Defined Specializations + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +

+ Occationally the end user may need to provide their own specialization for + one of the type traits - typically where intrinsic compiler support is required + to implement a specific trait fully. These specializations should derive from + boost::true_type + or boost::false_type + as appropriate: +

+
+#include <boost/type_traits/is_pod.hpp>
+#include <boost/type_traits/is_class.hpp>
+#include <boost/type_traits/is_union.hpp>
+
+struct my_pod{};
+struct my_union
+{
+   char c;
+   int i;
+};
+
+namespace boost
+{
+   template<>
+   struct is_pod<my_pod> : public true_type{};
+      
+   template<>
+   struct is_pod<my_union> : public true_type{};
+   
+   template<>
+   struct is_union<my_union> : public true_type{};
+   
+   template<>
+   struct is_class<my_union> : public false_type{};
+}
+
+
+ + + +
+
+
+PrevUpHomeNext +
+ + diff --git a/doc/html/index.html b/doc/html/index.html new file mode 100644 index 0000000..09c933a --- /dev/null +++ b/doc/html/index.html @@ -0,0 +1,166 @@ + + + +Chapter 1. Boost.TypeTraits + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
Next
+
+
+

+Chapter 1. Boost.TypeTraits

+

+various authors +

+
+
+

+ Distributed under the Boost Software License, Version 1.0. (See accompanying + file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) +

+
+
+
+

Table of Contents

+
+
Introduction
+
Background and Tutorial
+
Type Traits by Category
+
+
Type Traits + that Describe the Properties of a Type
+
+
Categorizing + a Type
+
+ General Type Properties
+
Relationships + Between Two Types
+
+
Type Traits that + Transform One Type to Another
+
Synthesizing Types + with Specific Alignments
+
Decomposing Function + Types
+
+
User Defined Specializations
+
Support for Compiler Intrinsics
+
MPL Interoperability
+
Examples
+
+
An Optimized Version + of std::copy
+
An Optimised Version + of std::fill
+
An Example that + Omits Destructor Calls For Types with Trivial Destructors
+
An improved Version + of std::iter_swap
+
Convert Numeric + Types and Enums to double
+
+
Alphabetical Reference
+
+
add_const
+
add_cv
+
add_pointer
+
add_reference
+
add_volatile
+
aligned_storage
+
alignment_of
+
decay
+
extent
+
+ floating_point_promotion
+
function_traits
+
has_nothrow_assign
+
+ has_nothrow_constructor
+
has_nothrow_copy
+
has_nothrow_copy_constructor
+
has_nothrow_default_constructor
+
has_trivial_assign
+
+ has_trivial_constructor
+
has_trivial_copy
+
has_trivial_copy_constructor
+
has_trivial_default_constructor
+
has_trivial_destructor
+
has_virtual_destructor
+
integral_constant
+
integral_promotion
+
is_abstract
+
is_arithmetic
+
is_array
+
is_base_of
+
is_class
+
is_complex
+
is_compound
+
is_const
+
is_convertible
+
is_empty
+
is_enum
+
is_floating_point
+
is_function
+
is_fundamental
+
is_integral
+
+ is_member_function_pointer
+
+ is_member_object_pointer
+
is_member_pointer
+
is_object
+
is_pod
+
is_pointer
+
is_polymorphic
+
is_same
+
is_scalar
+
is_signed
+
is_stateless
+
is_reference
+
is_union
+
is_unsigned
+
is_void
+
is_volatile
+
make_signed
+
make_unsigned
+
promote
+
rank
+
remove_all_extents
+
remove_const
+
remove_cv
+
remove_extent
+
remove_pointer
+
remove_reference
+
remove_volatile
+
type_with_alignment
+
+
Credits
+
+
+
+ + + +

Last revised: November 07, 2007 at 18:38:23 +0000

+
+
Next
+ + diff --git a/doc/type_traits.qbk b/doc/type_traits.qbk index 1287ad3..e53adaf 100644 --- a/doc/type_traits.qbk +++ b/doc/type_traits.qbk @@ -1,14 +1,21 @@ +[/ + Copyright 2007 John Maddock. + Distributed under the Boost Software License, Version 1.0. + (See accompanying file LICENSE_1_0.txt or copy at + http://www.boost.org/LICENSE_1_0.txt). +] + [library Boost.TypeTraits - [copyright 2000 2005 Adobe Systems Inc, David Abrahams, Steve Cleary, + [quickbook 1.4] + [copyright 2000 2006 Adobe Systems Inc, David Abrahams, Steve Cleary, Beman Dawes, Aleksey Gurtovoy, Howard Hinnant, Jesse Jones, Mat Marcus, - Itay Maman, John Maddock, Thorsten Ottosen, Robert Ramey and Jeremy Siek] + Itay Maman, John Maddock, Alexander Nasonov, Thorsten Ottosen, + Robert Ramey and Jeremy Siek] [purpose Meta-programming support library] [license - Distributed under the Boost Software License, Version 1.0. - (See accompanying file LICENSE_1_0.txt or copy at - - http://www.boost.org/LICENSE_1_0.txt - ) + Distributed under the Boost Software License, Version 1.0. + (See accompanying file LICENSE_1_0.txt or copy at + [@http://www.boost.org/LICENSE_1_0.txt]) ] [authors [authors, various]] [category template] @@ -16,89 +23,101 @@ [last-revision $Date$] ] + [def __boost_root ../../../../] -[def __tof '''true_type-or-false_type'''] +[def __tof '''true_type-or-false_type'''] [def __below '''see-below'''] -[def __true_type [link boost_typetraits.integral_constant true_type]] -[def __false_type [link boost_typetraits.integral_constant false_type]] -[def __integral_constant [link boost_typetraits.integral_constant integral_constant]] +[def __true_type [link boost_typetraits.reference.integral_constant true_type]] +[def __false_type [link boost_typetraits.reference.integral_constant false_type]] +[def __integral_constant [link boost_typetraits.reference.integral_constant integral_constant]] [def __inherit [*Inherits:]] [def __std_ref [*C++ Standard Reference:]] [def __header [*Header:]] [def __compat [*Compiler Compatibility:]] [def __examples [*Examples:]] [def __type [*type:]] -[def __transform_workaround [link transform.broken_compiler_workarounds_ compiler workarounds]] +[def __transform_workaround [link boost_typetraits.category.transform.broken_compiler_workarounds_ compiler workarounds]] [def __intrinsics [link boost_typetraits.intrinsics intrinsics]] -[def __is_void [link boost_typetraits.is_void is_void]] -[def __is_integral [link boost_typetraits.is_integral is_integral]] -[def __is_floating_point [link boost_typetraits.is_floating_point is_floating_point]] -[def __is_pointer [link boost_typetraits.is_pointer is_pointer]] -[def __is_reference [link boost_typetraits.is_reference is_reference]] -[def __is_member_pointer [link boost_typetraits.is_member_pointer is_member_pointer]] -[def __is_array [link boost_typetraits.is_array is_array]] -[def __is_union [link boost_typetraits.is_union is_union]] -[def __is_class [link boost_typetraits.is_class is_class]] -[def __is_enum [link boost_typetraits.is_enum is_enum]] -[def __is_enum [link boost_typetraits.is_enum is_enum]] -[def __is_function [link boost_typetraits.is_function is_function]] +[def __is_void [link boost_typetraits.reference.is_void is_void]] +[def __is_integral [link boost_typetraits.reference.is_integral is_integral]] +[def __is_floating_point [link boost_typetraits.reference.is_floating_point is_floating_point]] +[def __is_pointer [link boost_typetraits.reference.is_pointer is_pointer]] +[def __is_reference [link boost_typetraits.reference.is_reference is_reference]] +[def __is_member_pointer [link boost_typetraits.reference.is_member_pointer is_member_pointer]] +[def __is_array [link boost_typetraits.reference.is_array is_array]] +[def __is_union [link boost_typetraits.reference.is_union is_union]] +[def __is_class [link boost_typetraits.reference.is_class is_class]] +[def __is_enum [link boost_typetraits.reference.is_enum is_enum]] +[def __is_enum [link boost_typetraits.reference.is_enum is_enum]] +[def __is_function [link boost_typetraits.reference.is_function is_function]] -[def __is_arithmetic [link boost_typetraits.is_arithmetic is_arithmetic]] -[def __is_fundamental [link boost_typetraits.is_fundamental is_fundamental]] -[def __is_object [link boost_typetraits.is_object is_object]] -[def __is_scalar [link boost_typetraits.is_scalar is_scalar]] -[def __is_compound [link boost_typetraits.is_compound is_compound]] -[def __is_member_function_pointer [link boost_typetraits.is_member_function_pointer is_member_function_pointer]] -[def __is_member_object_pointer [link boost_typetraits.is_member_object_pointer is_member_object_pointer]] +[def __is_arithmetic [link boost_typetraits.reference.is_arithmetic is_arithmetic]] +[def __is_fundamental [link boost_typetraits.reference.is_fundamental is_fundamental]] +[def __is_object [link boost_typetraits.reference.is_object is_object]] +[def __is_scalar [link boost_typetraits.reference.is_scalar is_scalar]] +[def __is_compound [link boost_typetraits.reference.is_compound is_compound]] +[def __is_member_function_pointer [link boost_typetraits.reference.is_member_function_pointer is_member_function_pointer]] +[def __is_member_object_pointer [link boost_typetraits.reference.is_member_object_pointer is_member_object_pointer]] -[def __alignment_of [link boost_typetraits.alignment_of alignment_of]] -[def __rank [link boost_typetraits.rank rank]] -[def __extent [link boost_typetraits.extent extent]] -[def __is_empty [link boost_typetraits.is_empty is_empty]] -[def __is_const [link boost_typetraits.is_const is_const]] -[def __is_volatile [link boost_typetraits.is_volatile is_volatile]] -[def __is_abstract [link boost_typetraits.is_abstract is_abstract]] -[def __is_polymorphic [link boost_typetraits.is_polymorphic is_polymorphic]] -[def __has_virtual_destructor [link boost_typetraits.has_virtual_destructor has_virtual_destructor]] -[def __is_pod [link boost_typetraits.is_pod is_pod]] -[def __has_trivial_constructor [link boost_typetraits.has_trivial_constructor has_trivial_constructor]] -[def __has_trivial_copy [link boost_typetraits.has_trivial_copy has_trivial_copy]] -[def __has_trivial_assign [link boost_typetraits.has_trivial_assign has_trivial_assign]] -[def __has_trivial_destructor [link boost_typetraits.has_trivial_destructor has_trivial_destructor]] -[def __is_stateless [link boost_typetraits.is_stateless is_stateless]] -[def __has_nothrow_constructor [link boost_typetraits.has_nothrow_constructor has_nothrow_constructor]] -[def __has_nothrow_copy [link boost_typetraits.has_nothrow_copy has_nothrow_copy]] -[def __has_nothrow_assign [link boost_typetraits.has_nothrow_assign has_nothrow_assign]] +[def __alignment_of [link boost_typetraits.reference.alignment_of alignment_of]] +[def __rank [link boost_typetraits.reference.rank rank]] +[def __extent [link boost_typetraits.reference.extent extent]] +[def __is_empty [link boost_typetraits.reference.is_empty is_empty]] +[def __is_const [link boost_typetraits.reference.is_const is_const]] +[def __is_volatile [link boost_typetraits.reference.is_volatile is_volatile]] +[def __is_abstract [link boost_typetraits.reference.is_abstract is_abstract]] +[def __is_polymorphic [link boost_typetraits.reference.is_polymorphic is_polymorphic]] +[def __is_signed [link boost_typetraits.reference.is_signed is_signed]] +[def __is_unsigned [link boost_typetraits.reference.is_unsigned is_unsigned]] +[def __has_virtual_destructor [link boost_typetraits.reference.has_virtual_destructor has_virtual_destructor]] +[def __is_pod [link boost_typetraits.reference.is_pod is_pod]] +[def __has_trivial_constructor [link boost_typetraits.reference.has_trivial_constructor has_trivial_constructor]] +[def __has_trivial_copy [link boost_typetraits.reference.has_trivial_copy has_trivial_copy]] +[def __has_trivial_default_constructor [link boost_typetraits.reference.has_trivial_constructor has_trivial_default_constructor]] +[def __has_trivial_copy_constructor [link boost_typetraits.reference.has_trivial_copy has_trivial_copy_constructor]] +[def __has_trivial_assign [link boost_typetraits.reference.has_trivial_assign has_trivial_assign]] +[def __has_trivial_destructor [link boost_typetraits.reference.has_trivial_destructor has_trivial_destructor]] +[def __is_stateless [link boost_typetraits.reference.is_stateless is_stateless]] +[def __has_nothrow_constructor [link boost_typetraits.reference.has_nothrow_constructor has_nothrow_constructor]] +[def __has_nothrow_copy [link boost_typetraits.reference.has_nothrow_copy has_nothrow_copy]] +[def __has_nothrow_default_constructor [link boost_typetraits.reference.has_nothrow_constructor has_nothrow_default_constructor]] +[def __has_nothrow_copy_constructor [link boost_typetraits.reference.has_nothrow_copy has_nothrow_copy_constructor]] +[def __has_nothrow_assign [link boost_typetraits.reference.has_nothrow_assign has_nothrow_assign]] -[def __is_base_of [link boost_typetraits.is_base_of is_base_of]] -[def __is_convertible [link boost_typetraits.is_convertible is_convertible]] -[def __is_same [link boost_typetraits.is_same is_same]] +[def __is_base_of [link boost_typetraits.reference.is_base_of is_base_of]] +[def __is_convertible [link boost_typetraits.reference.is_convertible is_convertible]] +[def __is_same [link boost_typetraits.reference.is_same is_same]] -[def __remove_const [link boost_typetraits.remove_const remove_const]] -[def __remove_volatile [link boost_typetraits.remove_volatile remove_volatile]] -[def __remove_cv [link boost_typetraits.remove_cv remove_cv]] -[def __remove_reference [link boost_typetraits.remove_reference remove_reference]] -[def __remove_extent [link boost_typetraits.remove_extent remove_extent]] -[def __remove_all_extents [link boost_typetraits.remove_all_extents remove_all_extents]] -[def __remove_pointer [link boost_typetraits.remove_pointer remove_pointer]] -[def __add_reference [link boost_typetraits.add_reference add_reference]] -[def __add_pointer [link boost_typetraits.add_pointer add_pointer]] -[def __add_const [link boost_typetraits.add_const add_const]] -[def __add_volatile [link boost_typetraits.add_volatile add_volatile]] -[def __add_cv [link boost_typetraits.add_cv add_cv]] +[def __remove_const [link boost_typetraits.reference.remove_const remove_const]] +[def __remove_volatile [link boost_typetraits.reference.remove_volatile remove_volatile]] +[def __remove_cv [link boost_typetraits.reference.remove_cv remove_cv]] +[def __remove_reference [link boost_typetraits.reference.remove_reference remove_reference]] +[def __remove_extent [link boost_typetraits.reference.remove_extent remove_extent]] +[def __remove_all_extents [link boost_typetraits.reference.remove_all_extents remove_all_extents]] +[def __remove_pointer [link boost_typetraits.reference.remove_pointer remove_pointer]] +[def __add_reference [link boost_typetraits.reference.add_reference add_reference]] +[def __add_pointer [link boost_typetraits.reference.add_pointer add_pointer]] +[def __add_const [link boost_typetraits.reference.add_const add_const]] +[def __add_volatile [link boost_typetraits.reference.add_volatile add_volatile]] +[def __add_cv [link boost_typetraits.reference.add_cv add_cv]] -[def __type_with_alignment [link boost_typetraits.type_with_alignment type_with_alignment]] -[def __aligned_storage [link boost_typetraits.aligned_storage aligned_storage]] +[def __type_with_alignment [link boost_typetraits.reference.type_with_alignment type_with_alignment]] +[def __aligned_storage [link boost_typetraits.reference.aligned_storage aligned_storage]] -[def __function_traits [link boost_typetraits.function_traits function_traits]] +[def __function_traits [link boost_typetraits.reference.function_traits function_traits]] + +[def __promote [link boost_typetraits.reference.promote promote]] +[def __integral_promotion [link boost_typetraits.reference.integral_promotion integral_promotion]] +[def __floating_point_promotion [link boost_typetraits.reference.floating_point_promotion floating_point_promotion]] + +[def __make_signed [link boost_typetraits.reference.make_signed make_signed]] +[def __make_unsigned [link boost_typetraits.reference.make_unsigned make_unsigned]] +[def __decay [link boost_typetraits.reference.decay decay]] +[def __is_complex [link boost_typetraits.reference.is_complex is_complex]] [section:intro Introduction] -This documentation is -[@http://boost-consulting.com/vault/index.php?action=downloadfile&filename=boost_type_traits-1.34.pdf&directory=PDF%20Documentation& -also available in printer-friendly PDF format]. - The Boost type-traits library contains a set of very specific traits classes, each of which encapsulate a single trait from the C++ type system; for example, is a type a pointer or a reference type? @@ -116,2767 +135,112 @@ that is the result of the transformation. [endsect] -[section:background Background and Tutorial] - -The following is an updated version of the article "C++ Type traits" -by John Maddock and Steve Cleary that appeared in the October 2000 -issue of [@http://www.ddj.com Dr Dobb's Journal]. - -Generic programming (writing code which works with any data type meeting a -set of requirements) has become the method of choice for providing reusable code. -However, there are times in generic programming when "generic" just isn't -good enough - sometimes the differences between types are too large for an -efficient generic implementation. This is when the traits technique -becomes important - by encapsulating those properties that need to be -considered on a type by type basis inside a traits class, we can -minimize the amount of code that has to differ from one type to another, -and maximize the amount of generic code. - -Consider an example: when working with character strings, one common operation is -to determine the length of a null terminated string. Clearly it's possible to -write generic code that can do this, but it turns out that there are much more -efficient methods available: for example, the C library functions `strlen` and -`wcslen` are usually written in assembler, and with suitable hardware support -can be considerably faster than a generic version written in C++. -The authors of the C++ standard library realized this, and abstracted the -properties of `char` and `wchar_t` into the class `char_traits`. Generic code -that works with character strings can simply use `char_traits<>::length` to -determine the length of a null terminated string, safe in the knowledge -that specializations of `char_traits` will use the most appropriate method -available to them. - -[h4 Type Traits] - -Class `char_traits` is a classic example of a collection of type specific -properties wrapped up in a single class - what Nathan Myers termed a -/baggage class/[link background.references \[1\]]. In the Boost type-traits library, we[link background.references \[2\]] have written a -set of very specific traits classes, each of which encapsulate a single trait -from the C++ type system; for example, is a type a pointer or a reference type? -Or does a type have a trivial constructor, or a const-qualifier? -The type-traits classes share a unified design: each class inherits from a -the type __true_type if the type has the specified property and inherits from -__false_type otherwise. As we will show, these classes can be used in -generic programming to determine the properties of a given type and introduce -optimizations that are appropriate for that case. - -The type-traits library also contains a set of classes that perform a -specific transformation on a type; for example, they can remove a -top-level const or volatile qualifier from a type. Each class that -performs a transformation defines a single typedef-member `type` -that is the result of the transformation. All of the type-traits -classes are defined inside namespace `boost`; for brevity, namespace-qualification -is omitted in most of the code samples given. - -[h4 Implementation] - -There are far too many separate classes contained in the type-traits library -to give a full implementation here - see the source code in the Boost library -for the full details - however, most of the implementation is fairly repetitive -anyway, so here we will just give you a flavor for how some of the classes are -implemented. Beginning with possibly the simplest class in the library, -`is_void` inherits from `__true_type` only if `T` is `void`. - - template - struct __is_void : public __false_type{}; - - template <> - struct __is_void : public __true_type{}; - -Here we define a primary version of the template class `__is_void`, and -provide a full-specialization when `T` is `void`. While full specialization -of a template class is an important technique, sometimes we need a -solution that is halfway between a fully generic solution, and a full -specialization. This is exactly the situation for which the standards committee -defined partial template-class specialization. As an example, consider the -class `boost::is_pointer`: here we needed a primary version that handles -all the cases where T is not a pointer, and a partial specialization to -handle all the cases where T is a pointer: - - template - struct __is_pointer : public __false_type{}; - - template - struct __is_pointer : public __true_type{}; - -The syntax for partial specialization is somewhat arcane and could easily -occupy an article in its own right; like full specialization, in order to -write a partial specialization for a class, you must first declare the -primary template. The partial specialization contains an extra <...> after the -class name that contains the partial specialization parameters; these define -the types that will bind to that partial specialization rather than the -default template. The rules for what can appear in a partial specialization -are somewhat convoluted, but as a rule of thumb if you can legally write two -function overloads of the form: - - void foo(T); - void foo(U); - -Then you can also write a partial specialization of the form: - - template - class c{ /*details*/ }; - - template - class c{ /*details*/ }; - -This rule is by no means foolproof, but it is reasonably simple to remember -and close enough to the actual rule to be useful for everyday use. - -As a more complex example of partial specialization consider the class -`remove_extent`. This class defines a single typedef-member `type` that -is the same type as T but with any top-level array bounds removed; -this is an example of a traits class that performs a transformation on a type: - - template - struct __remove_extent - { typedef T type; }; - - template - struct __remove_extent - { typedef T type; }; - -The aim of `__remove_extent` is this: imagine a generic algorithm that is -passed an array type as a template parameter, `__remove_extent` provides a -means of determining the underlying type of the array. For example -`remove_extent::type` would evaluate to the type `int[5]`. -This example also shows that the number of template parameters in a -partial specialization does not have to match the number in the -default template. However, the number of parameters that appear after the -class name do have to match the number and type of the parameters in the -default template. - -[h4 Optimized copy] - -As an example of how the type traits classes can be used, consider the -standard library algorithm copy: - - template - Iter2 copy(Iter1 first, Iter1 last, Iter2 out); - -Obviously, there's no problem writing a generic version of copy that works -for all iterator types `Iter1` and `Iter2`; however, there are some -circumstances when the copy operation can best be performed by a call to -`memcpy`. In order to implement copy in terms of `memcpy` all of the -following conditions need to be met: - -* Both of the iterator types `Iter1` and `Iter2` must be pointers. -* Both `Iter1` and `Iter2` must point to the same type - excluding const and -volatile-qualifiers. -* The type pointed to by `Iter1` must have a trivial assignment operator. - -By trivial assignment operator we mean that the type is either a scalar type[link background.references \[3\]] or: - -* The type has no user defined assignment operator. -* The type does not have any data members that are references. -* All base classes, and all data member objects must have trivial assignment operators. - -If all these conditions are met then a type can be copied using `memcpy` -rather than using a compiler generated assignment operator. The type-traits -library provides a class `__has_trivial_assign`, such that -`has_trivial_assign::value` is true only if T has a trivial assignment operator. -This class "just works" for scalar types, but has to be explicitly -specialised for class/struct types that also happen to have a trivial assignment -operator. In other words if __has_trivial_assign gives the wrong answer, -it will give the "safe" wrong answer - that trivial assignment is not allowable. - -The code for an optimized version of copy that uses `memcpy` where appropriate is -given in [link boost_typetraits.copy the examples]. The code begins by defining a template -function `do_copy` that performs a "slow but safe" copy. The last parameter passed -to this function may be either a `__true_type` or a `__false_type`. Following that -there is an overload of do_copy that uses `memcpy`: this time the iterators are required -to actually be pointers to the same type, and the final parameter must be a -`__true_type`. Finally, the version of `copy` calls `do_copy`, passing -`__has_trivial_assign()` as the final parameter: this will dispatch -to the optimized version where appropriate, otherwise it will call the -"slow but safe version". - -[h4 Was it worth it?] - -It has often been repeated in these columns that "premature optimization is the -root of all evil" [link background.references \[4\]]. So the question must be asked: was our optimization -premature? To put this in perspective the timings for our version of copy -compared a conventional generic copy[link background.references \[5\]] are shown in table 1. - -Clearly the optimization makes a difference in this case; but, to be fair, -the timings are loaded to exclude cache miss effects - without this -accurate comparison between algorithms becomes difficult. However, perhaps -we can add a couple of caveats to the premature optimization rule: - -*If you use the right algorithm for the job in the first place then optimization -will not be required; in some cases, memcpy is the right algorithm. -*If a component is going to be reused in many places by many people then -optimizations may well be worthwhile where they would not be so for a single -case - in other words, the likelihood that the optimization will be -absolutely necessary somewhere, sometime is that much higher. -Just as importantly the perceived value of the stock implementation will be -higher: there is no point standardizing an algorithm if users reject it on -the grounds that there are better, more heavily optimized versions available. - -[table Time taken to copy 1000 elements using `copy` (times in micro-seconds) - -[[Version] [T] [Time]] -[["Optimized" copy] [char] [0.99]] -[[Conventional copy] [char] [8.07]] -[["Optimized" copy] [int] [2.52]] -[[Conventional copy] [int] [8.02]] -] - -[h4 Pair of References] -The optimized copy example shows how type traits may be used to perform -optimization decisions at compile-time. Another important usage of type traits -is to allow code to compile that otherwise would not do so unless excessive -partial specialization is used. This is possible by delegating partial -specialization to the type traits classes. Our example for this form of -usage is a pair that can hold references [link background.references \[6\]]. - -First, let us examine the definition of `std::pair`, omitting the -comparison operators, default constructor, and template copy constructor for -simplicity: - - template - struct pair - { - typedef T1 first_type; - typedef T2 second_type; - - T1 first; - T2 second; - - pair(const T1 & nfirst, const T2 & nsecond) - :first(nfirst), second(nsecond) { } - }; - -Now, this "pair" cannot hold references as it currently stands, because the -constructor would require taking a reference to a reference, which is -currently illegal [link background.references \[7\]]. Let us consider what the constructor's parameters -would have to be in order to allow "pair" to hold non-reference types, -references, and constant references: - -[table Required Constructor Argument Types -[[Type of `T1`] [Type of parameter to initializing constructor]] -[[T] [const T &]] -[[T &] [T &]] -[[const T &] [const T &]] -] - -A little familiarity with the type traits classes allows us to construct a -single mapping that allows us to determine the type of parameter from the -type of the contained class. The type traits classes provide a -transformation __add_reference, which adds a reference to its type, -unless it is already a reference. - -[table Using add_reference to synthesize the correct constructor type -[[Type of `T1`] [Type of `const T1`] [Type of `add_reference::type`]] -[[T] [const T] [const T &]] -[[T &] [T & \[8\]] [T &]] -[[const T &] [const T &] [const T &]] -] - -This allows us to build a primary template definition for `pair` that can -contain non-reference types, reference types, and constant reference types: - - template - struct pair - { - typedef T1 first_type; - typedef T2 second_type; - - T1 first; - T2 second; - - pair(boost::__add_reference::type nfirst, - boost::__add_reference::type nsecond) - :first(nfirst), second(nsecond) { } - }; - -Add back in the standard comparison operators, default constructor, -and template copy constructor (which are all the same), and you have a -`std::pair` that can hold reference types! - -This same extension could have been done using partial template specialization -of `pair`, but to specialize `pair` in this way would require three partial -specializations, plus the primary template. Type traits allows us to -define a single primary template that adjusts itself auto-magically to -any of these partial specializations, instead of a brute-force partial -specialization approach. Using type traits in this fashion allows -programmers to delegate partial specialization to the type traits classes, -resulting in code that is easier to maintain and easier to understand. - -[h4 Conclusion] - -We hope that in this article we have been able to give you some idea of -what type-traits are all about. A more complete listing of the available -classes are in the boost documentation, along with further examples using -type traits. Templates have enabled C++ uses to take the advantage of the -code reuse that generic programming brings; hopefully this article has -shown that generic programming does not have to sink to the lowest common -denominator, and that templates can be optimal as well as generic. - -[h4 Acknowledgements] - -The authors would like to thank Beman Dawes and Howard Hinnant for their -helpful comments when preparing this article. - -[h4 References] - -# Nathan C. Myers, C++ Report, June 1995. -# The type traits library is based upon contributions by Steve Cleary, Beman Dawes, Howard Hinnant and John Maddock: it can be found at www.boost.org. -# A scalar type is an arithmetic type (i.e. a built-in integer or floating point type), an enumeration type, a pointer, a pointer to member, or a const- or volatile-qualified version of one of these types. -# This quote is from Donald Knuth, ACM Computing Surveys, December 1974, pg 268. -# The test code is available as part of the boost utility library (see algo_opt_examples.cpp), the code was compiled with gcc 2.95 with all optimisations turned on, tests were conducted on a 400MHz Pentium II machine running Microsoft Windows 98. -# John Maddock and Howard Hinnant have submitted a "compressed_pair" library to Boost, which uses a technique similar to the one described here to hold references. Their pair also uses type traits to determine if any of the types are empty, and will derive instead of contain to conserve space -- hence the name "compressed". -# This is actually an issue with the C++ Core Language Working Group (issue #106), submitted by Bjarne Stroustrup. The tentative resolution is to allow a "reference to a reference to T" to mean the same thing as a "reference to T", but only in template instantiation, in a method similar to multiple cv-qualifiers. -# For those of you who are wondering why this shouldn't be const-qualified, remember that references are always implicitly constant (for example, you can't re-assign a reference). Remember also that "const T &" is something completely different. For this reason, cv-qualifiers on template type arguments that are references are ignored. - -[endsect] +[include background.qbk] [section:category Type Traits by Category] -[section:value_traits Type Traits that Describe the Properties of a Type] -These traits are all /value traits/, which is to say the traits classes all -inherit from __integral_constant, and are used to access some numerical -property of a type. Often this is a simple true or false Boolean value, -but in a few cases may be some other integer value (for example when dealing -with type alignments, or array bounds: see `__alignment_of`, `__rank` and `__extent`). - -[section:primary Categorizing a Type] - -These traits identify what "kind" of type some type `T` is. These are split into -two groups: primary traits which are all mutually exclusive, and composite traits -that are compositions of one or more primary traits. - -For any given type, exactly one primary type trait will inherit from -__true_type, and all the others will inherit from __false_type, in other -words these traits are mutually exclusive. - -This means that `__is_integral::value` and `__is_floating_point::value` -will only ever be true for built-in types; if you want to check for a -user-defined class type that behaves "as if" it is an integral or floating point type, -then use the `std::numeric_limits template` instead. - -[*Synopsis:] - - template - struct __is_array; - - template - struct __is_class; - - template - struct __is_enum; - - template - struct __is_floating_point; - - template - struct __is_function; - - template - struct __is_integral; - - template - struct __is_member_function_pointer; - - template - struct __is_member_object_pointer; - - template - struct __is_pointer; - - template - struct __is_reference; - - template - struct __is_union; - - template - struct __is_void; - -The following traits are made up of the union of one or more type -categorizations. A type may belong to more than one of these categories, -in addition to one of the primary categories. - - template - struct __is_arithmetic; - - template - struct __is_compound; - - template - struct __is_fundamental; - - template - struct __is_member_pointer; - - template - struct __is_object; - - template - struct __is_scalar; - -[endsect] - -[section:properties General Type Properties] - -The following templates describe the general properties of a type. - -[*Synopsis:] - - template - struct __alignment_of; - - template - struct __has_nothrow_assign; - - template - struct __has_nothrow_constructor; - - template - struct __has_nothrow_copy; - - template - struct __has_trivial_assign; - - template - struct __has_trivial_constructor; - - template - struct __has_trivial_copy; - - template - struct __has_trivial_destructor; - - template - struct __has_virtual_destructor; - - template - struct __is_abstract; - - template - struct __is_const; - - template - struct __is_empty; - - template - struct __is_stateless; - - template - struct __is_pod; - - template - struct __is_polymorphic; - - template - struct __is_volatile; - - template - struct __extent; - - template - struct __rank; +[include value_traits.qbk] +[include transform_traits.qbk] +[include alignment_traits.qbk] +[include decomposing_func.qbk] [endsect] -[section:relate Relationships Between Two Types] - -These templates determine the whether there is a relationship -between two types: - -[*Synopsis:] - - template - struct __is_base_of; - - template - struct __is_convertible; - - template - struct __is_same; - -[endsect] - -[endsect] -[section:transform Type Traits that Transform One Type to Another] - -The following templates transform one type to another, -based upon some well-defined rule. -Each template has a single member called `type` that is the -result of applying the transformation to the template argument `T`. - -[*Synopsis:] - - template - struct __add_const; - - template - struct __add_cv; - - template - struct __add_pointer; - - template - struct __add_reference; - - template - struct __add_volatile; - - template - struct __remove_all_extents; - - template - struct __remove_const; - - template - struct __remove_cv; - - template - struct __remove_extent; - - template - struct __remove_pointer; - - template - struct __remove_reference; - - template - struct __remove_volatile; - -[h4 Broken Compiler Workarounds:] - -For all of these templates support for partial specialization of class templates is -required to correctly implement the transformation. -On the other hand, practice shows that many of the templates from this -category are very useful, and often essential for implementing some -generic libraries. Lack of these templates is often one of the major -limiting factors in porting those libraries to compilers that do not yet -support this language feature. As some of these compilers are going to be -around for a while, and at least one of them is very wide-spread, -it was decided that the library should provide workarounds where possible. - -The basic idea behind the workaround is to manually define full -specializations of all type transformation templates for all fundamental types, -and all their 1st and 2nd rank cv-[un]qualified derivative pointer types, and to -provide a user-level macro that will define all the explicit specializations needed -for any user-defined type T. - -The first part guarantees the successful compilation of something like this: - - BOOST_STATIC_ASSERT((is_same::type>::value)); - BOOST_STATIC_ASSERT((is_same::type>::value)); - BOOST_STATIC_ASSERT((is_same::type>::value)); - BOOST_STATIC_ASSERT((is_same::type>::value)); - BOOST_STATIC_ASSERT((is_same::type>::value)); - BOOST_STATIC_ASSERT((is_same::type>::value)); - ... - BOOST_STATIC_ASSERT((is_same::type>::value)); - -and the second part provides the library's users with a mechanism to make the -above code work not only for `char`, `int` or other built-in type, -but for their own types as well: - - namespace myspace{ - struct MyClass {}; - } - // declare this at global scope: - BOOST_BROKEN_COMPILER_TYPE_TRAITS_SPECIALIZATION(myspace::MyClass) - // transformations on myspace::MyClass now work: - BOOST_STATIC_ASSERT((is_same::type>::value)); - BOOST_STATIC_ASSERT((is_same::type>::value)); - // etc. - -Note that the macro BOOST_BROKEN_COMPILER_TYPE_TRAITS_SPECIALIZATION evaluates -to nothing on those compilers that *do* support partial specialization. - -[endsect] - -[section:alignment Synthesizing Types with Specific Alignments] - -Some low level memory management routines need to synthesize a POD type with -specific alignment properties. The template `__type_with_alignment` finds the smallest -type with a specified alignment, while template `__aligned_storage` creates a type -with a specific size and alignment. - -[*Synopsis] - - template - struct __type_with_alignment; - - template - struct __aligned_storage; - -[endsect] - -[section:function Decomposing Function Types] - -The class template __function_traits extracts information from function types -(see also __is_function). This traits class allows you to tell how many arguments -a function takes, what those argument types are, and what the return type is. - -[*Synopsis] - - template - struct __function_traits; - -[endsect] - -[endsect] - -[section:user_defined User Defined Specializations] - -Occationally the end user may need to provide their own specialization -for one of the type traits - typically where intrinsic compiler support -is required to implement a specific trait fully. -These specializations should derive from boost::__true_type or boost::__false_type -as appropriate: - - #include - #include - #include - - struct my_pod{}; - struct my_union - { - char c; - int i; - }; - - namespace boost - { - template<> - struct __is_pod : public __true_type{}; - - template<> - struct __is_pod : public __true_type{}; - - template<> - struct __is_union : public __true_type{}; - - template<> - struct __is_class : public __false_type{}; - } - -[endsect] - -[section:intrinsics Support for Compiler Intrinsics] - -There are some traits that can not be implemented within the current C++ language: -to make these traits "just work" with user defined types, some kind of additional -help from the compiler is required. Currently (May 2005) MWCW 9 and Visual C++ 8 -provide the necessary intrinsics, and other compilers will no doubt follow in due -course. - -The Following traits classes always need compiler support to do the right thing -for all types -(but all have safe fallback positions if this support is unavailable): - -* __is_union -* __is_pod -* __has_trivial_constructor -* __has_trivial_copy -* __has_trivial_assign -* __has_trivial_destructor -* __has_nothrow_constructor -* __has_nothrow_copy -* __has_nothrow_assign -* __has_virtual_destructor - -The following traits classes can't be portably implemented in the C++ language, -although in practice, the implementations do in fact do the right thing on all -the compilers we know about: - -* __is_empty -* __is_polymorphic - -The following traits classes are dependent on one or more of the above: - -* __is_class -* __is_stateless - -The hooks for compiler-intrinsic support are defined in -[@../../boost/type_traits/intrinsics.hpp boost/type_traits/intrinsics.hpp], adding support for new compilers is simply -a matter of defining one of more of the following macros: - -[table Macros for Compiler Intrinsics - [[BOOST_IS_UNION(T)][Should evaluate to true if T is a union type]] - [[BOOST_IS_POD(T)][Should evaluate to true if T is a POD type]] - [[BOOST_IS_EMPTY(T)][Should evaluate to true if T is an empty struct or union]] - [[BOOST_HAS_TRIVIAL_CONSTRUCTOR(T)][Should evaluate to true if the default constructor for T is trivial (i.e. has no effect)]] - [[BOOST_HAS_TRIVIAL_COPY(T)][Should evaluate to true if T has a trivial copy constructor (and can therefore be replaced by a call to memcpy)]] - [[BOOST_HAS_TRIVIAL_ASSIGN(T)][Should evaluate to true if T has a trivial assignment operator (and can therefore be replaced by a call to memcpy)]] - [[BOOST_HAS_TRIVIAL_DESTRUCTOR(T)][Should evaluate to true if T has a trivial destructor (i.e. ~T() has no effect)]] - [[BOOST_HAS_NOTHROW_CONSTRUCTOR(T)][Should evaluate to true if `T x;` can not throw]] - [[BOOST_HAS_NOTHROW_COPY(T)][Should evaluate to true if `T(t)` can not throw]] - [[BOOST_HAS_NOTHROW_ASSIGN(T)][Should evaluate to true if `T t, u; t = u` can not throw]] - [[BOOST_HAS_VIRTUAL_DESTRUCTOR(T)][Should evaluate to true T has a virtual destructor]] -] - -[endsect] - -[section:mpl MPL Interoperability] - -All the value based traits in this library conform to MPL's requirements -for an [@../../libs/mpl/doc/refmanual/integral-constant.html Integral Constant type]: that includes a number of rather intrusive -workarounds for broken compilers. - -Purely as an implementation detail, this -means that `__true_type` inherits from [@../../libs/mpl/doc/refmanual/bool.html `boost::mpl::true_`], `__false_type` inherits -from [@../../libs/mpl/doc/refmanual/bool.html `boost::mpl::false_`], and `__integral_constant` inherits from -[@../../libs/mpl/doc/refmanual/integral-c.html `boost::mpl::integral_c`] (provided `T` is not `bool`) - -[endsect] - -[section:examples Examples] - -[section:copy An Optimized Version of std::copy] - -Demonstrates a version of `std::copy` that uses `__has_trivial_assign` to -determine whether to use `memcpy` to optimise the copy operation -(see [@../../libs/type_traits/examples/copy_example.cpp copy_example.cpp]): - - // - // opt::copy - // same semantics as std::copy - // calls memcpy where appropriate. - // - - namespace detail{ - - template - I2 copy_imp(I1 first, I1 last, I2 out, const boost::__integral_constant&) - { - while(first != last) - { - *out = *first; - ++out; - ++first; - } - return out; - } - - template - T* copy_imp(const T* first, const T* last, T* out, const boost::__true_type&) - { - memcpy(out, first, (last-first)*sizeof(T)); - return out+(last-first); - } - - - } - - template - inline I2 copy(I1 first, I1 last, I2 out) - { - // - // We can copy with memcpy if T has a trivial assignment operator, - // and if the iterator arguments are actually pointers (this last - // requirement we detect with overload resolution): - // - typedef typename std::iterator_traits::value_type value_type; - return detail::copy_imp(first, last, out, boost::__has_trivial_assign()); - } - - -[endsect] - -[section:fill An Optimised Version of std::fill] - -Demonstrates a version of `std::fill` that uses `__has_trivial_assign` to -determine whether to use `memset` to optimise the fill operation -(see [@../../libs/type_traits/examples/fill_example.cpp fill_example.cpp]): - - // - // fill - // same as std::fill, but uses memset where appropriate - // - namespace detail{ - - template - void do_fill(I first, I last, const T& val, const boost::__integral_constant&) - { - while(first != last) - { - *first = val; - ++first; - } - } - - template - void do_fill(T* first, T* last, const T& val, const boost::__true_type&) - { - std::memset(first, val, last-first); - } - - } - - template - inline void fill(I first, I last, const T& val) - { - // - // We can do an optimised fill if T has a trivial assignment - // operator and if it's size is one: - // - typedef boost::__integral_constant::value && (sizeof(T) == 1)> truth_type; - detail::do_fill(first, last, val, truth_type()); - } - - -[endsect] - -[section:destruct An Example that Omits Destructor Calls For Types with Trivial Destructors] - -Demonstrates a simple algorithm that uses `__has_trivial_destruct` to -determine whether to destructors need to be called -(see [@../../libs/type_traits/examples/trivial_destructor_example.cpp trivial_destructor_example.cpp]): - - // - // algorithm destroy_array: - // The reverse of std::unitialized_copy, takes a block of - // initialized memory and calls destructors on all objects therein. - // - - namespace detail{ - - template - void do_destroy_array(T* first, T* last, const boost::__false_type&) - { - while(first != last) - { - first->~T(); - ++first; - } - } - - template - inline void do_destroy_array(T* first, T* last, const boost::__true_type&) - { - } - - } // namespace detail - - template - inline void destroy_array(T* p1, T* p2) - { - detail::do_destroy_array(p1, p2, ::boost::__has_trivial_destructor()); - } - - -[endsect] - -[section:iter An improved Version of std::iter_swap] - -Demonstrates a version of `std::iter_swap` that use type traits to -determine whether an it's arguments are proxying iterators or not, -if they're not then it just does a `std::swap` of it's dereferenced -arguments (the -same as `std::iter_swap` does), however if they are proxying iterators -then takes special care over the swap to ensure that the algorithm -works correctly for both proxying iterators, and even iterators of -different types -(see [@../../libs/type_traits/examples/iter_swap_example.cpp iter_swap_example.cpp]): - - // - // iter_swap: - // tests whether iterator is a proxying iterator or not, and - // uses optimal form accordingly: - // - namespace detail{ - - template - static void do_swap(I one, I two, const boost::__false_type&) - { - typedef typename std::iterator_traits::value_type v_t; - v_t v = *one; - *one = *two; - *two = v; - } - template - static void do_swap(I one, I two, const boost::__true_type&) - { - using std::swap; - swap(*one, *two); - } - - } - - template - inline void iter_swap(I1 one, I2 two) - { - // - // See is both arguments are non-proxying iterators, - // and if both iterator the same type: - // - typedef typename std::iterator_traits::reference r1_t; - typedef typename std::iterator_traits::reference r2_t; - - typedef boost::__integral_constant::value - && ::boost::__is_reference::value - && ::boost::__is_same::value> truth_type; - - detail::do_swap(one, two, truth_type()); - } - - -[endsect] - -[endsect] +[include user_defined.qbk] +[include intrinsics.qbk] +[include mpl.qbk] +[include examples.qbk] [section:reference Alphabetical Reference] -[section:add_const add_const] +[include add_const.qbk] +[include add_cv.qbk] +[include add_pointer.qbk] +[include add_reference.qbk] +[include add_volatile.qbk] +[include aligned_storage.qbk] +[include alignment_of.qbk] +[include decay.qbk] +[include extent.qbk] +[include floating_point_promotion.qbk] +[include function_traits.qbk] - template - struct add_const - { - typedef __below type; - }; - -__type The same type as `T const` for all `T`. +[include has_nothrow_assign.qbk] +[include has_nothrow_constructor.qbk] +[include has_nothrow_copy.qbk] +[section:has_nothrow_cp_cons has_nothrow_copy_constructor] +See __has_nothrow_copy. +[endsect] +[section:has_no_throw_def_cons has_nothrow_default_constructor] +See __has_nothrow_constructor. +[endsect] +[include has_trivial_assign.qbk] +[include has_trivial_constructor.qbk] +[include has_trivial_copy.qbk] +[section:has_trivial_cp_cons has_trivial_copy_constructor] +See __has_trivial_copy. +[endsect] +[section:has_trivial_def_cons has_trivial_default_constructor] +See __has_trivial_constructor. +[endsect] +[include has_trivial_destructor.qbk] +[include has_virtual_destructor.qbk] -__std_ref 3.9.3. +[include integral_constant.qbk] +[include integral_promotion.qbk] -__compat If the compiler does not support partial specialization of class-templates -then this template will compile, but the member `type` will always be the same as -type `T` except where __transform_workaround have been applied. +[include is_abstract.qbk] +[include is_arithmetic.qbk] +[include is_array.qbk] +[include is_base_of.qbk] +[include is_class.qbk] +[include is_complex.qbk] +[include is_compound.qbk] +[include is_const.qbk] +[include is_convertible.qbk] +[include is_empty.qbk] +[include is_enum.qbk] +[include is_floating_point.qbk] +[include is_function.qbk] +[include is_fundamental.qbk] +[include is_integral.qbk] +[include is_member_function_pointer.qbk] +[include is_member_object_pointer.qbk] +[include is_member_pointer.qbk] +[include is_object.qbk] +[include is_pod.qbk] +[include is_pointer.qbk] +[include is_polymorphic.qbk] +[include is_same.qbk] +[include is_scalar.qbk] +[include is_signed.qbk] +[include is_stateless.qbk] +[include is_reference.qbk] +[include is_union.qbk] +[include is_unsigned.qbk] +[include is_void.qbk] +[include is_volatile.qbk] -__header ` #include ` or ` #include ` +[include make_signed.qbk] +[include make_unsigned.qbk] -[table Examples +[include promote.qbk] +[include rank.qbk] -[ [Expression] [Result Type]] - -[[`add_const::type`][`int const`]] - -[[`add_const::type`] [`int&`]] - -[[`add_const::type`] [`int* const`]] - -[[`add_const::type`] [`int const`]] - -] +[include remove_all_extents.qbk] +[include remove_const.qbk] +[include remove_cv.qbk] +[include remove_extent.qbk] +[include remove_pointer.qbk] +[include remove_reference.qbk] +[include remove_volatile.qbk] +[include type_with_alignment.qbk] [endsect] -[section:add_cv add_cv] +[include credits.qbk] - template - struct add_cv - { - typedef __below type; - }; - -__type The same type as `T const volatile` for all `T`. -__std_ref 3.9.3. - -__compat If the compiler does not support partial specialization of class-templates -then this template will compile, but the member `type` will always be the same as -type `T` except where __transform_workaround have been applied. - -__header ` #include ` or ` #include ` - -[table Examples - -[ [Expression] [Result Type]] - -[[`add_cv::type`][`int const volatile`]] - -[[`add_cv::type`] [`int&`]] - -[[`add_cv::type`] [`int* const volatile`]] - -[[`add_cv::type`] [`int const volatile`]] - -] - -[endsect] - -[section:add_pointer add_pointer] - - template - struct add_pointer - { - typedef __below type; - }; - -__type The same type as `remove_reference::type*`. - -The rationale for this template -is that it produces the same type as `TYPEOF(&t)`, -where `t` is an object of type `T`. - -__std_ref 8.3.1. - -__compat If the compiler does not support partial specialization of class-templates -then this template will compile, but the member `type` will always be the same as -type `T` except where __transform_workaround have been applied. - -__header ` #include ` or ` #include ` - -[table Examples - -[ [Expression] [Result Type]] - -[[`add_pointer::type`][`int*`]] - -[[`add_pointer::type`] [`int const*`]] - -[[`add_pointer::type`] [`int**`]] - -[[`add_pointer::type`] [`int**`]] - -] - -[endsect] - -[section:add_reference add_reference] - - template - struct add_reference - { - typedef __below type; - }; - -__type If `T` is not a reference type then `T&`, otherwise `T`. - -__std_ref 8.3.2. - -__compat If the compiler does not support partial specialization of class-templates -then this template will compile, but the member `type` will always be the same as -type `T` except where __transform_workaround have been applied. - -__header ` #include ` or ` #include ` - -[table Examples - -[ [Expression] [Result Type]] - -[[`add_reference::type`][`int&`]] - -[[`add_reference::type`] [`int const&`]] - -[[`add_reference::type`] [`int*&`]] - -[[`add_reference::type`] [`int*&`]] - -] - -[endsect] - -[section:add_volatile add_volatile] - - template - struct add_volatile - { - typedef __below type; - }; - -__type The same type as `T volatile` for all `T`. - -__std_ref 3.9.3. - -__compat If the compiler does not support partial specialization of class-templates -then this template will compile, but the member `type` will always be the same as -type `T` except where __transform_workaround have been applied. - -__header ` #include ` or ` #include ` - -[table Examples - -[ [Expression] [Result Type]] - -[[`add_volatile::type`][`int volatile`]] - -[[`add_volatile::type`] [`int&`]] - -[[`add_volatile::type`] [`int* volatile`]] - -[[`add_volatile::type`] [`int const volatile`]] - -] - -[endsect] - -[section:aligned_storage aligned_storage] - - template - struct aligned_storage - { - typedef __below type; - }; - -__type a built-in or POD type with size `Size` and an alignment -that is a multiple of `Align`. - -__header ` #include ` or ` #include ` - -[endsect] - -[section:alignment_of alignment_of] - template - struct alignment_of : public __integral_constant {}; - -__inherit Class template alignment_of inherits from -`__integral_constant`, where `ALIGNOF(T)` is the -alignment of type T. - -['Note: strictly speaking you should only rely on -the value of `ALIGNOF(T)` being a multiple of the true alignment of T, although -in practice it does compute the correct value in all the cases we know about.] - -__header ` #include ` or ` #include ` - -__examples - -[:`alignment_of` inherits from `__integral_constant`.] - -[:`alignment_of::type` is the type `__integral_constant`.] - -[:`alignment_of::value` is an integral constant -expression with value `ALIGNOF(double)`.] - -[:`alignment_of::value_type` is the type `std::size_t`.] - -[endsect] - -[section:extent extent] - template - struct extent : public __integral_constant {}; - -__inherit Class template extent inherits from `__integral_constant`, -where `EXTENT(T,N)` is the number of elements in the N'th array dimention of type `T`. - -If `T` is not an array type, or if `N > __rank::value`, or if the N'th array bound -is incomplete, then `EXTENT(T,N)` is zero. - -__header ` #include ` or ` #include ` - -__examples - -[:`extent` inherits from `__integral_constant`.] - -[:`extent::type` is the type `__integral_constant`.] - -[:`extent::value` is an integral constant -expression that evaluates to /4/.] - -[:`extent::value` is an integral constant -expression that evaluates to /0/.] - -[:`extent::value` is an integral constant -expression that evaluates to /2/.] - -[:`extent::value` is an integral constant -expression that evaluates to /0/.] - -[:`extent::value_type` is the type `std::size_t`.] - -[endsect] - -[section:function_traits function_traits] -[def __argN '''argN_type'''] - - template - struct function_traits - { - static const std::size_t arity = __below; - typedef __below result_type; - typedef __below __argN; - }; - -The class template function_traits will only compile if: - -* The compiler supports partial specialization of class templates. -* The template argument `T` is a /function type/, note that this ['[*is not]] -the same thing as a /pointer to a function/. - -[table Function Traits Members -[[Member] [Description]] -[[`function_traits::arity`] - [An integral constant expression that gives the number of arguments accepted by the function type `F`.]] -[[`function_traits::result_type`] - [The type returned by function type `F`.]] -[[`function_traits::__argN`] - [The '''Nth''' argument type of function type `F`, where `1 <= N <= arity` of `F`.]] -] - -[table Examples -[[Expression] [Result]] -[[`function_traits::arity`] [An integral constant expression that has the value 0.]] -[[`function_traits::arity`] [An integral constant expression that has the value 1.]] -[[`function_traits::arity`] [An integral constant expression that has the value 4.]] -[[`function_traits::result_type`] [The type `void`.]] -[[`function_traits::result_type`] [The type `long`.]] -[[`function_traits::arg1_type`] [The type `int`.]] -[[`function_traits::arg4_type`] [The type `void*`.]] -[[`function_traits::arg5_type`] [A compiler error: there is no `arg4_type` since there are only three arguments.]] -[[`function_traits::arity`] [A compiler error: argument type is a /function pointer/, and not a /function type/.]] - -] - -[endsect] - -[section:has_nothrow_assign has_nothrow_assign] - - template - struct has_nothrow_assign : public __tof {}; - -__inherit If T is a (possibly cv-qualified) type with a non-throwing assignment-operator -then inherits from __true_type, otherwise inherits from __false_type. Type `T` -must be a complete type. - -__compat If the compiler does not support partial-specialization of class -templates, then this template can not be used with function types. - -Without some (as yet unspecified) help from the compiler, -`has_nothrow_assign` will never report that a class or struct has a -non-throwing assignment-operator; this is always safe, if possibly sub-optimal. -Currently (May 2005) only Visual C++ 8 has the necessary compiler support to ensure that this -trait "just works". - -__header ` #include ` or ` #include ` - -[endsect] - -[section:has_nothrow_constructor has_nothrow_constructor] - template - struct has_nothrow_constructor : public __tof {}; - -__inherit If T is a (possibly cv-qualified) type with a non-throwing default-constructor -then inherits from __true_type, otherwise inherits from __false_type. Type `T` -must be a complete type. - -__compat If the compiler does not support partial-specialization of class -templates, then this template can not be used with function types. - -Without some (as yet unspecified) help from the compiler, -`has_nothrow_constructor` will never report that a class or struct has a -non-throwing default-constructor; this is always safe, if possibly sub-optimal. -Currently (May 2005) only Visual C++ 8 has the necessary compiler __intrinsics to ensure that this -trait "just works". - -__header ` #include ` or ` #include ` - -[endsect] - -[section:has_nothrow_copy has_nothrow_copy] - template - struct has_nothrow_copy : public __tof {}; - -__inherit If T is a (possibly cv-qualified) type with a non-throwing copy-constructor -then inherits from __true_type, otherwise inherits from __false_type. Type `T` -must be a complete type. - -__compat If the compiler does not support partial-specialization of class -templates, then this template can not be used with function types. - -Without some (as yet unspecified) help from the compiler, -`has_nothrow_copy` will never report that a class or struct has a -non-throwing copy-constructor; this is always safe, if possibly sub-optimal. -Currently (May 2005) only Visual C++ 8 has the necessary compiler __intrinsics to ensure that this -trait "just works". - -__header ` #include ` or ` #include ` - -[endsect] - -[section:has_trivial_assign has_trivial_assign] - template - struct has_trivial_assign : public __tof {}; - -__inherit If T is a (possibly cv-qualified) type with a trivial assignment-operator -then inherits from __true_type, otherwise inherits from __false_type. - -If a type has a trivial assignment-operator then the operator has the same effect -as copying the bits of one object to the other: -calls to the operator can be safely replaced with a call to `memcpy`. - -__compat If the compiler does not support partial-specialization of class -templates, then this template can not be used with function types. - -Without some (as yet unspecified) help from the compiler, -has_trivial_assign will never report that a user-defined class or struct has a -trivial constructor; this is always safe, if possibly sub-optimal. Currently -(May 2005) only MWCW 9 and Visual C++ 8 have the necessary compiler __intrinsics to detect -user-defined classes with trivial constructors. - -__std_ref 12.8p11. - -__header ` #include ` or ` #include ` - -__examples - -[:`has_trivial_assign` inherits from `__true_type`.] - -[:`has_trivial_assign::type` is the type `__true_type`.] - -[:`has_trivial_assign::value` is an integral constant -expression that evaluates to /true/.] - -[:`has_trivial_assign::value` is an integral constant -expression that evaluates to /false/.] - -[:`has_trivial_assign::value_type` is the type `bool`.] - -[endsect] - -[section:has_trivial_constructor has_trivial_constructor] - template - struct has_trivial_constructor : public __tof {}; - -__inherit If T is a (possibly cv-qualified) type with a trivial default-constructor -then inherits from __true_type, otherwise inherits from __false_type. - -If a type has a trivial default-constructor then the constructor have no effect: -calls to the constructor can be safely omitted. Note that using meta-programming -to omit a call to a single trivial-constructor call is of no benefit whatsoever. -However, if loops and/or exception handling code can also be omitted, then some -benefit in terms of code size and speed can be obtained. - -__compat If the compiler does not support partial-specialization of class -templates, then this template can not be used with function types. - -Without some (as yet unspecified) help from the compiler, -has_trivial_constructor will never report that a user-defined class or struct has a -trivial constructor; this is always safe, if possibly sub-optimal. Currently -(May 2005) only MWCW 9 and Visual C++ 8 have the necessary compiler __intrinsics to detect -user-defined classes with trivial constructors. - -__std_ref 12.1p6. - -__header ` #include ` or ` #include ` - -__examples - -[:`has_trivial_constructor` inherits from `__true_type`.] - -[:`has_trivial_constructor::type` is the type `__true_type`.] - -[:`has_trivial_constructor::value` is an integral constant -expression that evaluates to /true/.] - -[:`has_trivial_constructor::value` is an integral constant -expression that evaluates to /false/.] - -[:`has_trivial_constructor::value_type` is the type `bool`.] - -[endsect] - -[section:has_trivial_copy has_trivial_copy] - template - struct has_trivial_copy : public __tof {}; - -__inherit If T is a (possibly cv-qualified) type with a trivial copy-constructor -then inherits from __true_type, otherwise inherits from __false_type. - -If a type has a trivial copy-constructor then the constructor has the same effect -as copying the bits of one object to the other: -calls to the constructor can be safely replaced with a call to `memcpy`. - -__compat If the compiler does not support partial-specialization of class -templates, then this template can not be used with function types. - -Without some (as yet unspecified) help from the compiler, -has_trivial_copy will never report that a user-defined class or struct has a -trivial constructor; this is always safe, if possibly sub-optimal. Currently -(May 2005) only MWCW 9 and Visual C++ 8 have the necessary compiler __intrinsics to detect -user-defined classes with trivial constructors. - -__std_ref 12.8p6. - -__header ` #include ` or ` #include ` - -__examples - -[:`has_trivial_copy` inherits from `__true_type`.] - -[:`has_trivial_copy::type` is the type `__true_type`.] - -[:`has_trivial_copy::value` is an integral constant -expression that evaluates to /true/.] - -[:`has_trivial_copy::value` is an integral constant -expression that evaluates to /false/.] - -[:`has_trivial_copy::value_type` is the type `bool`.] - -[endsect] - -[section:has_trivial_destructor has_trivial_destructor] - template - struct has_trivial_destructor : public __tof {}; - -__inherit If T is a (possibly cv-qualified) type with a trivial destructor -then inherits from __true_type, otherwise inherits from __false_type. - -If a type has a trivial destructor then the destructor has no effect: -calls to the destructor can be safely omitted. Note that using meta-programming -to omit a call to a single trivial-constructor call is of no benefit whatsoever. -However, if loops and/or exception handling code can also be omitted, then some -benefit in terms of code size and speed can be obtained. - -__compat If the compiler does not support partial-specialization of class -templates, then this template can not be used with function types. - -Without some (as yet unspecified) help from the compiler, -has_trivial_destructor will never report that a user-defined class or struct has a -trivial destructor; this is always safe, if possibly sub-optimal. Currently -(May 2005) only MWCW 9 and Visual C++ 8 have the necessary compiler __intrinsics to detect -user-defined classes with trivial constructors. - -__std_ref 12.4p3. - -__header ` #include ` or ` #include ` - -__examples - -[:`has_trivial_destructor` inherits from `__true_type`.] - -[:`has_trivial_destructor::type` is the type `__true_type`.] - -[:`has_trivial_destructor::value` is an integral constant -expression that evaluates to /true/.] - -[:`has_trivial_destructor::value` is an integral constant -expression that evaluates to /false/.] - -[:`has_trivial_destructor::value_type` is the type `bool`.] - -[endsect] - -[section:has_virtual_destructor has_virtual_destructor] - template - struct has_virtual_destructor : public __tof {}; - -__inherit If T is a (possibly cv-qualified) type with a virtual destructor -then inherits from __true_type, otherwise inherits from __false_type. - -__compat This trait is provided for completeness, since it's part of the -Technical Report on C++ Library Extensions. However, there is currently no -way to portably implement this trait. The default version provided -always inherits from __false_type, and has to be explicitly specialized for -types with virtual destructors unless the compiler used has compiler __intrinsics -that enable the trait to do the right thing: currently (May 2005) only Visual C++ -8 has the necessary __intrinsics. - -__std_ref 12.4. - -__header ` #include ` or ` #include ` - -[endsect] - -[section:integral_constant integral_constant] - template - struct integral_constant - { - typedef integral_constant type; - typedef T value_type; - static const T value = val; - }; - - typedef integral_constant true_type; - typedef integral_constant false_type; - -Class template `integral_constant` is the common base class for all the value-based -type traits. The two typedef's `true_type` and `false_type` are provided for -convenience: most of the value traits are Boolean properties and so will inherit from -one of these. - -[endsect] - -[section:is_abstract is_abstract] - template - struct is_abstract : public __tof {}; - -__inherit If T is a (possibly cv-qualified) abstract type then inherits from -__true_type, otherwise inherits from __false_type. - -__std_ref 10.3. - -__header ` #include ` or ` #include ` - -__compat The compiler must support DR337 (as of April 2005: GCC 3.4, VC++ 7.1 (and later), - Intel C++ 7 (and later), and Comeau 4.3.2). -Otherwise behaves the same as __is_polymorphic; -this is the "safe fallback position" for which polymorphic types are always -regarded as potentially abstract. The macro BOOST_NO_IS_ABSTRACT is used to -signify that the implementation is buggy, users should check for this in their -own code if the "safe fallback" is not suitable for their particular use-case. - -__examples - -[:Given: `class abc{ virtual ~abc() = 0; };` ] - -[:`is_abstract` inherits from `__true_type`.] - -[:`is_abstract::type` is the type `__true_type`.] - -[:`is_abstract::value` is an integral constant -expression that evaluates to /true/.] - -[:`is_abstract::value_type` is the type `bool`.] - -[endsect] - -[section:is_arithmetic is_arithmetic] - template - struct is_arithmetic : public __tof {}; - -__inherit If T is a (possibly cv-qualified) arithmetic type then inherits from -__true_type, otherwise inherits from __false_type. Arithmetic types include -integral and floating point types (see also __is_integral and __is_floating_point). - -__std_ref 3.9.1p8. - -__header ` #include ` or ` #include ` - -__examples - -[:`is_arithmetic` inherits from `__true_type`.] - -[:`is_arithmetic::type` is the type `__true_type`.] - -[:`is_arithmetic::value` is an integral constant -expression that evaluates to /true/.] - -[:`is_arithmetic::value_type` is the type `bool`.] - -[endsect] - -[section:is_array is_array] - template - struct is_array : public __tof {}; - -__inherit If T is a (possibly cv-qualified) array type then inherits from __true_type, -otherwise inherits from __false_type. - -__std_ref 3.9.2 and 8.3.4. - -__header ` #include ` or ` #include ` - -__compat If the compiler does not support -partial-specialization of class templates, then this template -can give the wrong result with function types. - -__examples - -[:`is_array` inherits from `__true_type`.] - -[:`is_array::type` is the type `__true_type`.] - -[:`is_array::value` is an integral constant -expression that evaluates to /true/.] - -[:`is_array::value_type` is the type `bool`.] - -[endsect] - -[section:is_base_of is_base_of] - template - struct is_base_of : public __tof {}; - -__inherit If Base is base class of type Derived or if both types are the same -then inherits from __true_type, -otherwise inherits from __false_type. - -This template will detect non-public base classes, and ambiguous base classes. - -Note that `is_base_of` will always inherit from __true_type. [*This is the -case even if `X` is not a class type]. This is a change in behaviour -from Boost-1.33 in order to track the Technical Report on C++ Library Extensions. - -Types `Base` and `Derived` must not be incomplete types. - -__std_ref 10. - -__header ` #include ` or ` #include ` - -__compat If the compiler does not support partial-specialization of class templates, -then this template can not be used with function types. There are some older compilers -which will produce compiler errors if `Base` is a private base class of `Derived`, or if -`Base` is an ambiguous base of `Derived`. These compilers include Borland C++, older -versions of Sun Forte C++, Digital Mars C++, and older versions of EDG based compilers. - -__examples - -[:Given: ` class Base{}; class Derived : public Base{};` ] - -[:`is_base_of` inherits from `__true_type`.] - -[:`is_base_of::type` is the type `__true_type`.] - -[:`is_base_of::value` is an integral constant -expression that evaluates to /true/.] - -[:`is_base_of::value` is an integral constant -expression that evaluates to /true/: a class is regarded as it's own base.] - -[:`is_base_of::value` is an integral constant -expression that evaluates to /false/: the arguments are the wrong way round.] - -[:`is_base_of::value_type` is the type `bool`.] - -[endsect] - -[section:is_class is_class] - template - struct is_class : public __tof {}; - -__inherit If T is a (possibly cv-qualified) class type then inherits from __true_type, -otherwise inherits from __false_type. - -__std_ref 3.9.2 and 9.2. - -__header ` #include ` or ` #include ` - -__compat Without (some as yet unspecified) help from the compiler, -we cannot distinguish between union and class types, as a result this type -will erroneously inherit from __true_type for union types. See also __is_union. -Currently (May 2005) only Visual C++ 8 has the necessary compiler __intrinsics to -correctly identify union types, and therefore make is_class function correctly. - -__examples - -[:Given: `class MyClass;` then:] - -[:`is_class` inherits from `__true_type`.] - -[:`is_class::type` is the type `__true_type`.] - -[:`is_class::value` is an integral constant -expression that evaluates to /true/.] - -[:`is_class::value` is an integral constant -expression that evaluates to /false/.] - -[:`is_class::value` is an integral constant -expression that evaluates to /false/.] - -[:`is_class::value_type` is the type `bool`.] - -[endsect] - -[section:is_compound is_compound] - template - struct is_compound : public __tof {}; - -__inherit If T is a (possibly cv-qualified) compound type then inherits from __true_type, -otherwise inherits from __false_type. Any type that is not a fundamental type is -a compound type (see also __is_fundamental). - -__std_ref 3.9.2. - -__header ` #include ` or ` #include ` - -__examples - -[:`is_compound` inherits from `__true_type`.] - -[:`is_compound::type` is the type `__true_type`.] - -[:`is_compound::value` is an integral constant -expression that evaluates to /true/.] - -[:`is_compound::value` is an integral constant -expression that evaluates to /true/.] - -[:`is_compound::value` is an integral constant -expression that evaluates to /false/.] - -[:`is_compound::value_type` is the type `bool`.] - -[endsect] - -[section:is_const is_const] - template - struct is_const : public __tof {}; - -__inherit If T is a (top level) const-qualified type then inherits from __true_type, -otherwise inherits from __false_type. - -__std_ref 3.9.3. - -__header ` #include ` or ` #include ` - -__examples - -[:`is_const` inherits from `__true_type`.] - -[:`is_const::type` is the type `__true_type`.] - -[:`is_const::value` is an integral constant -expression that evaluates to /true/.] - -[:`is_const::value` is an integral constant -expression that evaluates to /false/: the const-qualifier is not -at the top level in this case.] - -[:`is_const::value` is an integral constant -expression that evaluates to /false/: the const-qualifier is not -at the top level in this case.] - -[:`is_const::value` is an integral constant -expression that evaluates to /false/.] - -[:`is_const::value_type` is the type `bool`.] - -[endsect] - -[section:is_convertible is_convertible] - template - struct is_convertible : public __tof {}; - -__inherit If an imaginary lvalue of type `From` is convertible to type `To` then -inherits from __true_type, otherwise inherits from __false_type. - -Type From must not be an incomplete type. - -Type To must not be an incomplete, or function type. - -No types are considered to be convertible to array types or abstract-class types. - -This template can not detect whether a converting-constructor is `public` or not: if -type `To` has a `private` converting constructor from type `From` then instantiating -`is_convertible` will produce a compiler error. For this reason `is_convertible` -can not be used to determine whether a type has a `public` copy-constructor or not. - -This template will also produce compiler errors if the conversion is ambiguous, -for example: - - struct A {}; - struct B : A {}; - struct C : A {}; - struct D : B, C {}; - // This produces a compiler error, the conversion is ambiguous: - bool const y = boost::is_convertible::value; - -__std_ref 4 and 8.5. - -__compat This template is currently broken with Borland C++ Builder 5 (and earlier), -for constructor-based conversions, and for the Metrowerks 7 (and earlier) -compiler in all cases. If the compiler does not support `__is_abstract`, then the -template parameter `To` must not be an abstract type. - -__header ` #include ` or ` #include ` - -__examples - -[:`is_convertible` inherits from `__true_type`.] - -[:`is_convertible::type` is the type `__true_type`.] - -[:`is_convertible::value` is an integral constant -expression that evaluates to /true/.] - -[:`is_convertible::value` is an integral constant -expression that evaluates to /false/: the conversion would require a `const_cast`.] - -[:`is_convertible::value` is an integral constant -expression that evaluates to /true/.] - -[:`is_convertible::value` is an integral constant -expression that evaluates to /false/.] - -[:`is_convertible::value_type` is the type `bool`.] - -[endsect] - -[section:is_empty is_empty] - template - struct is_empty : public __tof {}; - -__inherit If T is an empty class type then inherits from __true_type, -otherwise inherits from __false_type. - -__std_ref 10p5. - -__header ` #include ` or ` #include ` - -__compat In order to correctly detect empty classes this trait relies on either: - -* the compiler implementing zero sized empty base classes, or -* the compiler providing __intrinsics to detect empty classes. - -Can not be used with incomplete types. - -Can not be used with union types, until is_union can be made to work. - -If the compiler does not support partial-specialization of class templates, -then this template can not be used with abstract types. - -__examples - -[:Given: `struct empty_class {};` ] - -[:`is_empty` inherits from `__true_type`.] - -[:`is_empty::type` is the type `__true_type`.] - -[:`is_empty::value` is an integral constant -expression that evaluates to /true/.] - -[:`is_empty::value_type` is the type `bool`.] - -[endsect] - -[section:is_enum is_enum] - template - struct is_enum : public __tof {}; - -__inherit If T is a (possibly cv-qualified) enum type then inherits from __true_type, -otherwise inherits from __false_type. - -__std_ref 3.9.2 and 7.2. - -__header ` #include ` or ` #include ` - -__compat Requires a correctly functioning __is_convertible template; - this means that is_enum is currently broken under Borland C++ Builder 5, - and for the Metrowerks compiler prior to version 8, other compilers - should handle this template just fine. - -__examples - -[:Given: `enum my_enum { one, two };` ] - -[:`is_enum` inherits from `__true_type`.] - -[:`is_enum::type` is the type `__true_type`.] - -[:`is_enum::value` is an integral constant -expression that evaluates to /true/.] - -[:`is_enum::value` is an integral constant -expression that evaluates to /false/.] - -[:`is_enum::value` is an integral constant -expression that evaluates to /false/.] - -[:`is_enum::value_type` is the type `bool`.] - -[endsect] - -[section:is_floating_point is_floating_point] - template - struct is_floating_point : public __tof {}; - -__inherit If T is a (possibly cv-qualified) floating point type then inherits from __true_type, -otherwise inherits from __false_type. - -__std_ref 3.9.1p8. - -__header ` #include ` or ` #include ` - -__examples - -[:`is_floating_point` inherits from `__true_type`.] - -[:`is_floating_point::type` is the type `__true_type`.] - -[:`is_floating_point::value` is an integral constant -expression that evaluates to /true/.] - -[:`is_floating_point::value_type` is the type `bool`.] - -[endsect] - -[section:is_function is_function] - - template - struct is_function : public __tof {}; - -__inherit If T is a (possibly cv-qualified) function type then inherits from __true_type, -otherwise inherits from __false_type. Note that this template does not detect /pointers -to functions/, or /references to functions/, these are detected by __is_pointer and -__is_reference respectively: - - typedef int f1(); // f1 is of function type. - typedef int (f2*)(); // f2 is a pointer to a function. - typedef int (f3&)(); // f3 is a reference to a function. - -__std_ref 3.9.2p1 and 8.3.5. - -__header ` #include ` or ` #include ` - -__examples - -[:`is_function` inherits from `__true_type`.] - -[:`is_function::type` is the type `__true_type`.] - -[:`is_function::value` is an integral constant -expression that evaluates to /true/.] - -[:`is_function::value` is an integral constant -expression that evaluates to /false/: the argument in this case is a pointer type, -not a function type.] - -[:`is_function::value` is an integral constant -expression that evaluates to /false/: the argument in this case is a -reference to a function, not a function type.] - -[:`is_function::value` is an integral constant -expression that evaluates to /false/: the argument in this case is a pointer -to a member function.] - -[:`is_function::value_type` is the type `bool`.] - -[tip Don't confuse function-types with pointers to functions:\n\n -`typedef int f(double);`\n\n -defines a function type,\n\n -`f foo;`\n\n -declares a prototype for a function of type `f`,\n\n -`f* pf = foo;`\n -`f& fr = foo;`\n\n -declares a pointer and a reference to the function `foo`.\n\n -If you want to detect whether some type is a pointer-to-function then use:\n\n -`__is_function<__remove_pointer::type>::value && __is_pointer::value`\n\n -or for pointers to member functions you can just use __is_member_function_pointer directly.] - -[endsect] - -[section:is_fundamental is_fundamental] - template - struct is_fundamental : public __tof {}; - -__inherit If T is a (possibly cv-qualified) fundamental type then inherits from __true_type, -otherwise inherits from __false_type. Fundamental types include integral, floating -point and void types (see also __is_integral, __is_floating_point and __is_void) - -__std_ref 3.9.1. - -__header ` #include ` or ` #include ` - -__examples - -[:`is_fundamental` inherits from `__true_type`.] - -[:`is_fundamental::type` is the type `__true_type`.] - -[:`is_fundamental::value` is an integral constant -expression that evaluates to /true/.] - -[:`is_fundamental::value_type` is the type `bool`.] - -[endsect] - -[section:is_integral is_integral] - template - struct is_integral : public __tof {}; - -__inherit If T is a (possibly cv-qualified) integral type then inherits from __true_type, -otherwise inherits from __false_type. - -__std_ref 3.9.1p7. - -__header ` #include ` or ` #include ` - -__examples - -[:`is_integral` inherits from `__true_type`.] - -[:`is_integral::type` is the type `__true_type`.] - -[:`is_integral::value` is an integral constant -expression that evaluates to /true/.] - -[:`is_integral::value_type` is the type `bool`.] - -[endsect] - -[section:is_member_function_pointer is_member_function_pointer] - template - struct is_member_function_pointer : public __tof {}; - -__inherit If T is a (possibly cv-qualified) pointer to a member function -then inherits from __true_type, -otherwise inherits from __false_type. - -__std_ref 3.9.2 and 8.3.3. - -__header ` #include ` or ` #include ` - -__examples - -[:`is_member_function_pointer` inherits from `__true_type`.] - -[:`is_member_function_pointer::type` is the type `__true_type`.] - -[:`is_member_function_pointer::value` is an integral constant -expression that evaluates to /true/.] - -[:`is_member_function_pointer::value` is an integral constant -expression that evaluates to /false/: the argument in this case is a pointer to -a data member and not a member function, see __is_member_object_pointer -and __is_member_pointer] - -[:`is_member_function_pointer::value_type` is the type `bool`.] - -[endsect] - -[section:is_member_object_pointer is_member_object_pointer] - template - struct is_member_object_pointer : public __tof {}; - -__inherit If T is a (possibly cv-qualified) pointer to a member object (a data member) -then inherits from __true_type, -otherwise inherits from __false_type. - -__std_ref 3.9.2 and 8.3.3. - -__header ` #include ` or ` #include ` - -__examples - -[:`is_member_object_pointer` inherits from `__true_type`.] - -[:`is_member_object_pointer::type` is the type `__true_type`.] - -[:`is_member_object_pointer::value` is an integral constant -expression that evaluates to /true/.] - -[:`is_member_object_pointer::value` is an integral constant -expression that evaluates to /false/: the argument in this case is a pointer to -a member function and not a member object, see __is_member_function_pointer -and __is_member_pointer] - -[:`is_member_object_pointer::value_type` is the type `bool`.] - -[endsect] - -[section:is_member_pointer is_member_pointer] - template - struct is_member_pointer : public __tof {}; - -__inherit If T is a (possibly cv-qualified) pointer to a member (either a function -or a data member) -then inherits from __true_type, -otherwise inherits from __false_type. - -__std_ref 3.9.2 and 8.3.3. - -__header ` #include ` or ` #include ` - -__examples - -[:`is_member_pointer` inherits from `__true_type`.] - -[:`is_member_pointer::type` is the type `__true_type`.] - -[:`is_member_pointer::value` is an integral constant -expression that evaluates to /true/.] - -[:`is_member_pointer::value_type` is the type `bool`.] - -[endsect] - -[section:is_object is_object] - template - struct is_object : public __tof {}; - -__inherit If T is a (possibly cv-qualified) object type -then inherits from __true_type, -otherwise inherits from __false_type. All types are object types except -references, void, and function types. - -__std_ref 3.9p9. - -__header ` #include ` or ` #include ` - -__examples - -[:`is_object` inherits from `__true_type`.] - -[:`is_object::type` is the type `__true_type`.] - -[:`is_object::value` is an integral constant -expression that evaluates to /true/.] - -[:`is_object::value` is an integral constant -expression that evaluates to /true/.] - -[:`is_object::value` is an integral constant -expression that evaluates to /false/: reference types are not objects] - -[:`is_object::value` is an integral constant -expression that evaluates to /false/: function types are not objects] - -[:`is_object::value` is an integral constant -expression that evaluates to /false/: void is not an object type] - -[:`is_object::value_type` is the type `bool`.] - -[endsect] - -[section:is_pod is_pod] - template - struct is_pod : public __tof {}; - -__inherit If T is a (possibly cv-qualified) POD type then inherits from __true_type, -otherwise inherits from __false_type. - -POD stands for "Plain old data". -Arithmetic types, and enumeration types, -a pointers and pointer to members are all PODs. Classes and unions can also -be POD's if they have no non-static data members that are of reference or -non-POD type, no user defined constructors, no user defined assignment -operators, no private or protected non-static data members, -no virtual functions and no base classes. Finally, a cv-qualified POD is -still a POD, as is an array of PODs. - -__std_ref 3.9p10 and 9p4 (Note that POD's are also aggregates, see 8.5.1). - -__compat If the compiler does not support partial-specialization -of class templates, then this template can not be used with function types. - -Without some (as yet unspecified) help from the compiler, is_pod will -never report that a class or struct is a POD; this is always safe, -if possibly sub-optimal. Currently (May 2005) only MWCW 9 and Visual C++ 8 have the -necessary compiler-__intrinsics. - -__header ` #include ` or ` #include ` - -__examples - -[:`is_pod` inherits from `__true_type`.] - -[:`is_pod::type` is the type `__true_type`.] - -[:`is_pod::value` is an integral constant -expression that evaluates to /true/.] - -[:`is_pod::value` is an integral constant -expression that evaluates to /false/.] - -[:`is_pod::value_type` is the type `bool`.] - -[endsect] - -[section:is_pointer is_pointer] - - template - struct is_pointer : public __tof {}; - -__inherit If T is a (possibly cv-qualified) pointer type (includes function pointers, -but excludes pointers to members) then inherits from __true_type, -otherwise inherits from __false_type. - -__std_ref 3.9.2p2 and 8.3.1. - -__header ` #include ` or ` #include ` - -__examples - -[:`is_pointer` inherits from `__true_type`.] - -[:`is_pointer::type` is the type `__true_type`.] - -[:`is_pointer::value` is an integral constant -expression that evaluates to /true/.] - -[:`is_pointer::value` is an integral constant -expression that evaluates to /false/.] - -[:`is_pointer::value` is an integral constant -expression that evaluates to /false/.] - -[:`is_pointer::value_type` is the type `bool`.] - -[important `is_pointer` detects "real" pointer types only, and /not/ smart pointers. -Users should not specialise `is_pointer` for smart pointer types, as doing so may cause -Boost (and other third party) code to fail to function correctly. -Users wanting a trait to detect smart pointers should create their own. -However, note that there is no way in general to auto-magically detect smart pointer types, -so such a trait would have to be partially specialised for each supported smart pointer type.] - -[endsect] - -[section:is_polymorphic is_polymorphic] - template - struct is_polymorphic : public __tof {}; - -__inherit If T is a (possibly cv-qualified) polymorphic type -then inherits from __true_type, -otherwise inherits from __false_type. Type `T` must be a complete type. - -__std_ref 10.3. - -__compat The implementation requires some knowledge of the compilers ABI, -it does actually seem to work with the majority of compilers though. - -__header ` #include ` or ` #include ` - -__examples - -[: Given: `class poly{ virtual ~poly(); };` ] - -[:`is_polymorphic` inherits from `__true_type`.] - -[:`is_polymorphic::type` is the type `__true_type`.] - -[:`is_polymorphic::value` is an integral constant -expression that evaluates to /true/.] - -[:`is_polymorphic::value_type` is the type `bool`.] - -[endsect] - -[section:is_same is_same] - template - struct is_same : public __tof {}; - -__inherit If T and U are the same types then inherits from -__true_type, otherwise inherits from __false_type. - -__header ` #include ` or ` #include ` - -__compat If the compiler does not support partial-specialization of class templates, -then this template can not be used with abstract, incomplete or function types. - -__examples - -[:`is_same` inherits from `__true_type`.] - -[:`is_same::type` is the type `__true_type`.] - -[:`is_same::value` is an integral constant -expression that evaluates to /true/.] - -[:`is_same::value` is an integral constant -expression that evaluates to /false/.] - -[:`is_same::value` is an integral constant -expression that evaluates to /false/.] - -[:`is_same::value_type` is the type `bool`.] - -[endsect] - -[section:is_scalar is_scalar] - template - struct is_scalar : public __tof {}; - -__inherit If T is a (possibly cv-qualified) scalar type then inherits from -__true_type, otherwise inherits from __false_type. Scalar types include -integral, floating point, enumeration, pointer, and pointer-to-member types. - -__std_ref 3.9p10. - -__header ` #include ` or ` #include ` - -__compat If the compiler does not support partial-specialization of class templates, -then this template can not be used with function types. - -__examples - -[:`is_scalar` inherits from `__true_type`.] - -[:`is_scalar::type` is the type `__true_type`.] - -[:`is_scalar::value` is an integral constant -expression that evaluates to /true/.] - -[:`is_scalar::value` is an integral constant -expression that evaluates to /true/.] - -[:`is_scalar::value` is an integral constant -expression that evaluates to /true/.] - -[:`is_scalar::value` is an integral constant -expression that evaluates to /true/.] - -[:`is_scalar::value_type` is the type `bool`.] - -[endsect] - -[section:is_stateless is_stateless] - template - struct is_stateless : public __tof {}; - -__inherit Ff T is a stateless type then inherits from __true_type, otherwise -from __false_type. - -Type T must be a complete type. - -A stateless type is a type that has no storage and whose constructors and -destructors are trivial. That means that `is_stateless` only inherits from -__true_type if the following expression is `true`: - - ::boost::has_trivial_constructor::value - && ::boost::has_trivial_copy::value - && ::boost::has_trivial_destructor::value - && ::boost::is_class::value - && ::boost::is_empty::value - -__std_ref 3.9p10. - -__header ` #include ` or ` #include ` - -__compat If the compiler does not support partial-specialization of class templates, -then this template can not be used with function types. - -Without some (as yet unspecified) help from the compiler, is_stateless will never -report that a class or struct is stateless; this is always safe, -if possibly sub-optimal. Currently (May 2005) only MWCW 9 and Visual C++ 8 have the necessary -compiler __intrinsics to make this template work automatically. - -[endsect] - -[section:is_reference is_reference] - template - struct is_reference : public __tof {}; - -__inherit If T is a reference pointer type then inherits from __true_type, -otherwise inherits from __false_type. - -__std_ref 3.9.2 and 8.3.2. - -__compat If the compiler does not -support partial-specialization of class templates, -then this template may report the wrong result for function types, -and for types that are both const and volatile qualified. - -__header ` #include ` or ` #include ` - -__examples - -[:`is_reference` inherits from `__true_type`.] - -[:`is_reference::type` is the type `__true_type`.] - -[:`is_reference::value` is an integral constant -expression that evaluates to /true/ (the argument in this case is -a reference to a function).] - -[:`is_reference::value_type` is the type `bool`.] - -[endsect] - -[section:is_union is_union] - template - struct is_union : public __tof {}; - -__inherit If T is a (possibly cv-qualified) union type then inherits from __true_type, -otherwise inherits from __false_type. Currently requires some kind of compiler -support, otherwise unions are identified as classes. - -__std_ref 3.9.2 and 9.5. - -__compat Without (some as yet unspecified) help from the -compiler, we cannot distinguish between union and class types using only standard C++, -as a result this type will never inherit from __true_type, unless the user explicitly -specializes the template for their user-defined union types, or unless the compiler -supplies some unspecified intrinsic that implements this functionality. Currently -(May 2005) only Visual C++ 8 has the necessary compiler __intrinsics to make this -trait "just work" without user intervention. - -__header ` #include ` or ` #include ` - -__examples - -[:`is_union` inherits from `__true_type`.] - -[:`is_union::type` is the type `__true_type`.] - -[:`is_union::value` is an integral constant -expression that evaluates to /true/.] - -[:`is_union::value` is an integral constant -expression that evaluates to /false/.] - -[:`is_union::value_type` is the type `bool`.] - -[endsect] - -[section:is_void is_void] - template - struct is_void : public __tof {}; - -__inherit If T is a (possibly cv-qualified) void type then inherits from __true_type, -otherwise inherits from __false_type. - -__std_ref 3.9.1p9. - -__header ` #include ` or ` #include ` - -__examples - -[:`is_void` inherits from `__true_type`.] - -[:`is_void::type` is the type `__true_type`.] - -[:`is_void::value` is an integral constant -expression that evaluates to /true/.] - -[:`is_void::value` is an integral constant -expression that evaluates to /false/.] - -[:`is_void::value_type` is the type `bool`.] - -[endsect] - -[section:is_volatile is_volatile] - template - struct is_volatile : public __tof {}; - -__inherit If T is a (top level) volatile-qualified type then inherits from __true_type, -otherwise inherits from __false_type. - -__std_ref 3.9.3. - -__header ` #include ` or ` #include ` - -__examples - -[:`is_volatile` inherits from `__true_type`.] - -[:`is_volatile::type` is the type `__true_type`.] - -[:`is_volatile::value` is an integral constant -expression that evaluates to /true/.] - -[:`is_volatile::value` is an integral constant -expression that evaluates to /false/: the volatile qualifier is not -at the top level in this case.] - -[:`is_volatile::value_type` is the type `bool`.] - -[endsect] - -[section:rank rank] - template - struct rank : public __integral_constant {}; - -__inherit Class template rank inherits from `__integral_constant`, -where `RANK(T)` is the number of array dimensions in type `T`. - -If `T` is not an array type, then `RANK(T)` is zero. - -__header ` #include ` or ` #include ` - -__examples - -[:`rank` inherits from `__integral_constant`.] - -[:`rank::type` is the type `__integral_constant`.] - -[:`rank::value` is an integral constant -expression that evaluates to /1/.] - -[:`rank::value` is an integral constant -expression that evaluates to /2/.] - -[:`rank::value` is an integral constant -expression that evaluates to /0/.] - -[:`rank::value_type` is the type `std::size_t`.] - -[endsect] - -[section:remove_all_extents remove_all_extents] - - template - struct remove_all_extents - { - typedef __below type; - }; - -__type If `T` is an array type, then removes all of the array bounds on `T`, otherwise -leaves `T` unchanged. - -__std_ref 8.3.4. - -__compat If the compiler does not support partial specialization of class-templates -then this template will compile, but the member `type` will always be the same as -type `T` except where __transform_workaround have been applied. - -__header ` #include ` or ` #include ` - -[table Examples - -[ [Expression] [Result Type]] - -[[`remove_all_extents::type`][`int`]] - -[[`remove_all_extents::type`] [`int const`]] - -[[`remove_all_extents::type`] [`int`]] - -[[`remove_all_extents::type`] [`int`]] - -[[`remove_all_extents::type`] [`int const*`]] - -] - -[endsect] - -[section:remove_const remove_const] - - template - struct remove_const - { - typedef __below type; - }; - -__type The same type as `T`, but with any /top level/ const-qualifier removed. - -__std_ref 3.9.3. - -__compat If the compiler does not support partial specialization of class-templates -then this template will compile, but the member `type` will always be the same as -type `T` except where __transform_workaround have been applied. - -__header ` #include ` or ` #include ` - -[table Examples - -[ [Expression] [Result Type]] - -[[`remove_const::type`][`int`]] - -[[`remove_const::type`] [`int`]] - -[[`remove_const::type`] [`int volatile`]] - -[[`remove_const::type`] [`int const&`]] - -[[`remove_const::type`] [`int const*`]] - -] - -[endsect] - -[section:remove_cv remove_cv] - - template - struct remove_cv - { - typedef __below type; - }; - -__type The same type as `T`, but with any /top level/ cv-qualifiers removed. - -__std_ref 3.9.3. - -__compat If the compiler does not support partial specialization of class-templates -then this template will compile, but the member `type` will always be the same as -type `T` except where __transform_workaround have been applied. - -__header ` #include ` or ` #include ` - -[table Examples - -[ [Expression] [Result Type]] - -[[`remove_cv::type`][`int`]] - -[[`remove_cv::type`] [`int`]] - -[[`remove_cv::type`] [`int`]] - -[[`remove_cv::type`] [`int const&`]] - -[[`remove_cv::type`] [`int const*`]] - -] - -[endsect] - -[section:remove_extent remove_extent] - - template - struct remove_extent - { - typedef __below type; - }; - -__type If `T` is an array type, then removes the topmost array bound, -otherwise leaves `T` unchanged. - -__std_ref 8.3.4. - -__compat If the compiler does not support partial specialization of class-templates -then this template will compile, but the member `type` will always be the same as -type `T` except where __transform_workaround have been applied. - -__header ` #include ` or ` #include ` - -[table Examples - -[ [Expression] [Result Type]] - -[[`remove_extent::type`][`int`]] - -[[`remove_extent::type`] [`int const`]] - -[[`remove_extent::type`] [`int[4]`]] - -[[`remove_extent::type`] [`int[2]`]] - -[[`remove_extent::type`] [`int const*`]] - -] - -[endsect] - -[section:remove_pointer remove_pointer] - - template - struct remove_pointer - { - typedef __below type; - }; - -__type The same type as `T`, but with any pointer modifier removed. - -__std_ref 8.3.1. - -__compat If the compiler does not support partial specialization of class-templates -then this template will compile, but the member `type` will always be the same as -type `T` except where __transform_workaround have been applied. - -__header ` #include ` or ` #include ` - -[table Examples - -[ [Expression] [Result Type]] - -[[`remove_pointer::type`][`int`]] - -[[`remove_pointer::type`] [`int const`]] - -[[`remove_pointer::type`] [`int const*`]] - -[[`remove_pointer::type`] [`int&`]] - -[[`remove_pointer::type`] [`int*&`]] - -] - -[endsect] - -[section:remove_reference remove_reference] - - template - struct remove_reference - { - typedef __below type; - }; - -__type The same type as `T`, but with any reference modifier removed. - -__std_ref 8.3.2. - -__compat If the compiler does not support partial specialization of class-templates -then this template will compile, but the member `type` will always be the same as -type `T` except where __transform_workaround have been applied. - -__header ` #include ` or ` #include ` - -[table Examples - -[ [Expression] [Result Type]] - -[[`remove_reference::type`][`int`]] - -[[`remove_reference::type`] [`int const`]] - -[[`remove_reference::type`] [`int*`]] - -[[`remove_reference::type`] [`int*`]] - -] - -[endsect] - -[section:remove_volatile remove_volatile] - - template - struct remove_volatile - { - typedef __below type; - }; - -__type The same type as `T`, but with any /top level/ volatile-qualifier removed. - -__std_ref 3.9.3. - -__compat If the compiler does not support partial specialization of class-templates -then this template will compile, but the member `type` will always be the same as -type `T` except where __transform_workaround have been applied. - -__header ` #include ` or ` #include ` - -[table Examples - -[ [Expression] [Result Type]] - -[[`remove_volatile::type`][`int`]] - -[[`remove_volatile::type`] [`int`]] - -[[`remove_volatile::type`] [`int const`]] - -[[`remove_volatile::type`] [`int const&`]] - -[[`remove_volatile::type`] [`int const*`]] - -] - -[endsect] - -[section:type_with_alignment type_with_alignment] - - template - struct type_with_alignment - { - typedef __below type; - }; - -__type a built-in or POD type with an alignment -that is a multiple of `Align`. - -__header ` #include ` or ` #include ` - -[endsect] - -[endsect] - -[section:credits Credits] - -This documentation was pulled together by John Maddock, using -[@../../tools/quickbook/doc/html/index.html Boost.Quickbook] -and [@boostbook.html Boost.DocBook]. - -The original version of this library was created by Steve Cleary, -Beman Dawes, Howard Hinnant, and John Maddock. John Maddock is the -current maintainer of the library. - -This version of type traits library is based on contributions by -Adobe Systems Inc, David Abrahams, Steve Cleary, -Beman Dawes, Aleksey Gurtovoy, Howard Hinnant, Jesse Jones, Mat Marcus, -Itay Maman, John Maddock, Thorsten Ottosen, Robert Ramey and Jeremy Siek. - -Mat Marcus and Jesse Jones invented, and -[@http://opensource.adobe.com/project4/project.shtml published a paper describing], -the partial specialization workarounds used in this library. - -Aleksey Gurtovoy added MPL integration to the library. - -The __is_convertible template is based on code originally devised by -Andrei Alexandrescu, see -"[@http://www.cuj.com/experts/1810/alexandr.htm?topic=experts -Generic: Mappings between Types and Values]". - -The latest version of this library and documentation can be found at -[@http://www.boost.org www.boost.org]. Bugs, suggestions and discussion -should be directed to boost@lists.boost.org -(see [@http://www.boost.org/more/mailing_lists.htm#main -www.boost.org/more/mailing_lists.htm#main] for subscription details). - -[endsect] diff --git a/index.html b/index.html index def0f22..0307420 100644 --- a/index.html +++ b/index.html @@ -1,13 +1,11 @@ - + - Automatic redirection failed, please go to - ../../doc/html/boost_typetraits.html - or view the online version at - http://www.boost.org/regression-logs/cs-win32_metacomm/doc/html/boost_typetraits.html +

Automatic redirection failed, please go to + doc/html/index.html.

Copyright John Maddock 2001

Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at www.boost.org/LICENSE_1_0.txt).

@@ -17,3 +15,5 @@ + + diff --git a/test/is_class_test.cpp b/test/is_class_test.cpp index 156f94e..d885986 100644 --- a/test/is_class_test.cpp +++ b/test/is_class_test.cpp @@ -27,7 +27,7 @@ TT_TEST_BEGIN(is_class) BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_class::value, false); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_class::value, false); -#ifdef BOOST_HAS_TYPE_TRAITS_INTRINSICS +#if defined(BOOST_HAS_TYPE_TRAITS_INTRINSICS) && !defined(__sgi) BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_class::value, false); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_class::value, false); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_class::value, false); diff --git a/test/is_convertible_test.cpp b/test/is_convertible_test.cpp index f461e8a..d181cb5 100644 --- a/test/is_convertible_test.cpp +++ b/test/is_convertible_test.cpp @@ -84,7 +84,11 @@ BOOST_CHECK_INTEGRAL_CONSTANT((::tt::is_convertible::val BOOST_CHECK_INTEGRAL_CONSTANT((::tt::is_convertible::value), false); BOOST_CHECK_INTEGRAL_CONSTANT((::tt::is_convertible::value), false); BOOST_CHECK_INTEGRAL_CONSTANT((::tt::is_convertible::value), false); -#ifndef BOOST_NO_IS_ABSTRACT +#if !defined(BOOST_NO_IS_ABSTRACT) && !(defined(__hppa) && defined(__HP_aCC)) +// +// This doesn't work with aCC on PA RISC even though the is_abstract tests do +// all pass, this may indicate a deeper problem... +// BOOST_CHECK_INTEGRAL_CONSTANT((::tt::is_convertible::value), false); #endif diff --git a/test/is_union_test.cpp b/test/is_union_test.cpp index 5985704..a95ecc5 100644 --- a/test/is_union_test.cpp +++ b/test/is_union_test.cpp @@ -26,7 +26,7 @@ TT_TEST_BEGIN(is_union) BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_union::value, false); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_union::value, false); -#ifdef BOOST_HAS_TYPE_TRAITS_INTRINSICS +#if defined(BOOST_HAS_TYPE_TRAITS_INTRINSICS) && !defined(__sgi) BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_union::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_union::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_union::value, true); diff --git a/test/tricky_partial_spec_test.cpp b/test/tricky_partial_spec_test.cpp index 92c4714..ce7e005 100644 --- a/test/tricky_partial_spec_test.cpp +++ b/test/tricky_partial_spec_test.cpp @@ -18,6 +18,10 @@ #include #include #include +#include +#include +#include +#include #endif #include #include @@ -80,6 +84,34 @@ BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_polymorphic::va BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_polymorphic::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_polymorphic::value, true); +BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_pointer::value, true); +BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_pointer::value, true); +BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_pointer::value, true); + +BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_member_pointer::value, false); +BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_member_pointer::value, true); +BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_member_pointer::value, true); +BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_member_pointer::value, true); +BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_member_pointer::value, true); +BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_member_pointer::value, true); +BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_member_pointer::value, true); + +BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_member_object_pointer::value, false); +BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_member_object_pointer::value, true); +BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_member_object_pointer::value, true); +BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_member_object_pointer::value, true); +BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_member_object_pointer::value, false); +BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_member_object_pointer::value, false); +BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_member_object_pointer::value, false); + +BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_member_function_pointer::value, false); +BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_member_function_pointer::value, false); +BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_member_function_pointer::value, false); +BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_member_function_pointer::value, false); +BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_member_function_pointer::value, true); +BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_member_function_pointer::value, true); +BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_member_function_pointer::value, true); + TT_TEST_END