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 +
+
+

+ conditional +

+

+ #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 +
+ +