My Project
List of all members
bsl::conjunction< BN > Class Template Referencefinal

Forms the logical conjunction of the type traits B..., effectively performing a logical AND on the sequence of traits. More...

#include <conjunction.hpp>

Inherits bsl::integral_constant< T, v >.

Detailed Description

template<typename... BN>
class bsl::conjunction< BN >

Forms the logical conjunction of the type traits B..., effectively performing a logical AND on the sequence of traits.

#include <bsl/is_bool.hpp>
#include <bsl/is_void.hpp>
#include <bsl/debug.hpp>
namespace bsl
{
inline void
example_conjunction_overview() noexcept
{
if (bsl::conjunction<is_void<void>, is_bool<bool>>::value) {
bsl::print() << "success\n";
}
}
}
Template Parameters
BNa list of bool_constant types

The documentation for this class was generated from the following file: