命名空间
变体
操作

std::experimental::conjunction

来自 cppreference.com
定义在头文件 <experimental/type_traits>
template< class... B >
struct conjunction;
(库基础 TS v2)

形成类型特征 B...逻辑合取,实际上对特征序列执行逻辑 AND 操作。

特化 std::experimental::conjunction<B1, ..., BN> 具有一个公共且明确的基类,它是

  • 如果 sizeof...(B) == 0,则为 std::true_type;否则
  • B1, ..., BN 中第一个类型 Bi,对于它 bool(Bi::value) == false,或者如果不存在这样的类型,则为 BN

基类的成员名称,除了 conjunctionoperator= 之外,不会被隐藏,并且在 conjunction 中明确可用。

合取是短路:如果存在模板类型参数 Bi,其中 bool(Bi::value) == false,则实例化 conjunction<B1, ..., BN>::value 不需要实例化 Bj::value 对于 j > i.

内容

[编辑] 模板参数

B... - 每个模板参数 Bi,对于它实例化了 Bi::value 必须可以用作基类,并定义成员 value,该成员可转换为 bool

[编辑] 辅助变量模板

template< class... B >
constexpr bool conjunction_v = conjunction<B...>::value;
(库基础 TS v2)

[编辑] 可能的实现

template<class...> struct conjunction : std::true_type {};
template<class B1> struct conjunction<B1> : B1 {};
template<class B1, class... Bn>
struct conjunction<B1, Bn...> 
    : std::conditional_t<bool(B1::value), conjunction<Bn...>, B1> {};

[编辑] 注意事项

conjunction 的特化不一定继承自 std::true_typestd::false_type:它只是继承自第一个其 ::value 转换为 bool 为 false 的 B,或者当所有 B 都转换为 true 时继承自最后一个 B。例如,conjunction<std::integral_constant<int, 2>, std::integral_constant<int, 4>>::value4.

[编辑] 示例

#include <experimental/type_traits>
#include <iostream>
 
// func is enabled if all Ts... have the same type
template<typename T, typename... Ts>
constexpr std::enable_if_t<std::experimental::conjunction_v<std::is_same<T, Ts>...>>
func(T, Ts...)
{
    std::cout << "All types are the same.\n";
}
 
template<typename T, typename... Ts>
constexpr std::enable_if_t<!std::experimental::conjunction_v<std::is_same<T, Ts>...>>
func(T, Ts...)
{
    std::cout << "Types differ.\n";
}
 
int main()
{
    func(1, 2'7, 3'1);    
    func(1, 2.7, '3');    
}

输出

All types are the same.
Types differ.

[编辑] 另请参阅

可变参数逻辑 AND 元函数
(类模板) [编辑]