28 #ifndef BSL_CONJUNCTION_HPP 29 #define BSL_CONJUNCTION_HPP 47 template<
typename... BN>
57 template<
typename B1,
typename... BN>
58 class conjunction<B1, BN...> final :
61 bool_constant<conjunction<BN...>::value>,
62 bool_constant<B1::value>>
If the provided type is an array type (taking into account const qualifications), provides the member...
Definition: integral_constant.hpp:45
Forms the logical conjunction of the type traits B..., effectively performing a logical AND on the se...
Definition: conjunction.hpp:48