From a430c8da1dd2b10e3d76b30232db739e3b7d5715 Mon Sep 17 00:00:00 2001 From: Daniel James Date: Sat, 30 Oct 2010 14:31:23 +0000 Subject: [PATCH] Missing html file in type traits. [SVN r66272] --- .../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 +
+ +