NiHu  2.0
if.hpp
Go to the documentation of this file.
1 
7 #ifndef IF_HPP_INCLUDED
8 #define IF_HPP_INCLUDED
9 
10 namespace tmp
11 {
18 template <class Cond, class T, class F>
19 struct if_ : std::conditional<Cond::value, T, F> {};
20 }
21 
22 #endif /* IF_HPP_INCLUDED */
tmp
template metaprogramming functions
Definition: asymptotic_types.hpp:101
tmp::if_
IF control structure.
Definition: if.hpp:19