From cdd2aee33e4a851e3cb4c76375daba39aae4bd2a Mon Sep 17 00:00:00 2001 From: Daniel James Date: Sat, 30 Oct 2010 17:34:45 +0000 Subject: [PATCH] Merge documentation fixes to release. [SVN r66285] --- .../reference/conditional.html | 60 +++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 doc/html/boost_typetraits/reference/conditional.html diff --git a/doc/html/boost_typetraits/reference/conditional.html b/doc/html/boost_typetraits/reference/conditional.html new file mode 100644 index 0000000..67494fe --- /dev/null +++ b/doc/html/boost_typetraits/reference/conditional.html @@ -0,0 +1,60 @@ + + + +conditional + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +

+ #include <boost/type_traits/conditional.hpp> +

+
namespace boost {
+  template <bool B, class T, class U>  struct conditional;
+}
+
+

+ If B is true, the member typedef type shall equal T. If B is false, the member + typedef type shall equal F. +

+

+ This trait is really just an alias for boost::mpl::if_c. +

+
+ + + +
+
+
+PrevUpHomeNext +
+ +