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 中使得 bool(Bi::value) == false 的首个 Bi,或当没有这种类型时为 BN

基类中的成员名,除了 conjunctionoperator= 之外均未被隐藏,且在 conjunction 中可以无歧义访问。

合取支持短路:如果有任何模板类型实参 Bi 使得 bool(Bi::value) == false,则实例化 conjunction<B1, ..., BN>::value 时不要求对 j > i 实例化 Bj::value

模板形参

B... - 每个模板实参 Bi,其中若实例化了 Bi::value,则它必须可用作基类,且定义了可转换为 bool 的成员 value

辅助变量模板

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_type 或者 std::false_type:它只是继承于 ::value 显式转换为 bool 时为 false 的首个 B,或者当它们均转换为 true 时继承于最后一个 B。例如,conjunction<std::integral_constant<int, 2>, std::integral_constant<int, 4>>::value4

示例

#include <experimental/type_traits>
#include <iostream>
 
// 当所有 Ts... 均具有相同类型时启用 func
template<typename T, typename... Ts>
constexpr std::enable_if_t<std::experimental::conjunction_v<std::is_same<T, Ts>...>>
func(T, Ts...)
{
    std::cout << "所有类型均相同。\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 << "类型不同。\n";
}
 
int main()
{
    func(1, 2'7, 3'1);    
    func(1, 2.7, '3');    
}

输出:

所有类型均相同。
类型不同。

参阅

变参的逻辑与元函数
(类模板)