如何定义一个递归概念?

时间:2019-06-24 17:36:14

标签: c++ recursion c++20 c++-concepts

cppreference.com指出:

  

概念不能递归引用自己

但是我们如何定义一个表示整数或整数向量或整数向量的概念,等等。

我可以吃点东西

template < typename Type > concept bool IInt0 = std::is_integral_v<Type>;
template < typename Type > concept bool IInt1 = IInt0<Type> || requires(Type tt) { {*std::begin(tt)} -> IInt0; };
template < typename Type > concept bool IInt2 = IInt1<Type> || requires(Type tt) { {*std::begin(tt)} -> IInt1; };

static_assert(IInt2<int>);
static_assert(IInt2<std::vector<int>>);
static_assert(IInt2<std::vector<std::vector<int>>>);

但是我想使用类似IIntX的东西,对于任何N都表示IInt N

有可能吗?

1 个答案:

答案 0 :(得分:11)

概念始终可以遵循类型特征:

template <typename T> concept C = some_trait<T>::value;

该特征可以递归:

template <typename T>
struct some_trait : std::false_type { };

template <std::Integral T>
struct some_trait<T> : std::true_type { };

template <typename T, typename A>
struct some_trait<std::vector<T, A>> : some_trait<T> { };

如果您不只是说vector,那么可以将最后的部分专业化概括为:

template <std::Range R>
struct some_trait<R> : some_trait<std::range_value_t<R>> { };