C ++概念循环

时间:2017-09-05 20:02:25

标签: c++ metaprogramming c++-concepts boost-hana c++20

我想让编译器检查一个元组是否只包含"元类型"。

顺便说一句,我是C ++概念的新手。

template < typename T >
struct Type {
  using type = T;
};

//! A type can be easily check with a small concept
template < typename T >
concept bool  C_Type = requires {
  typename T::type;
};

//! But how to apply it on a whole tuple?
template < typename T >
void foo(T tuple) {}

int main() {

  constexpr auto  test = std::make_tuple(Type<int>{}, Type<double>{});
  foo(test);
}

所以我想确保序列中的每个类型(让我们只说这个例子中的Iterable)是一个&#34;元类型&#34;。

我使用Boost Hana,如果它可以简化代码。

目前我甚至不确定它是否可行。我希望它是,我想我只需要学习更多元编程的东西。所以我会继续搜索并尝试,但如果有人已经有了答案,谢谢!

3 个答案:

答案 0 :(得分:3)

概念在设计上太弱而无法执行元编程,因此要做到这一点,您需要从语言的其余部分获得一些“元编程帮助”。我会使用模板专门化将类型分解为模板及其类型参数,然后要求所有这些参数满足C_Type

template <class>
constexpr bool TypeTuple_ = false;
template <template <class...> class Tuple, class... Types>
  requires (C_Type<Types> && ...)
constexpr bool TypeTuple_<Tuple<Types...>> = true;

template <class T>
concept bool TypeTuple = TypeTuple_<T>;

这适用于hana::tuplestd::tuple - 任何带有所有类型参数的模板。

答案 1 :(得分:2)

我对概念并不太熟悉,但你可以通过多种方式与Boost.Hana实现这一目标。

通过查看评论,应该注意的是,任何元组类型都可以制作成hana::Sequence,按惯例也是hana::Searchablehana::Foldable

以下示例std::tuple用作hana::Searchable

#include <boost/hana.hpp>
#include <boost/hana/ext/std/tuple.hpp>
#include <tuple>
namespace hana = boost::hana;

template < typename T >
concept bool  C_Type = requires {
  typename T::type;
};

auto is_C_Type = hana::overload_linearly([](C_Type const&) { return hana::true_c; },
                                         [](auto const&)   { return hana::false_c; });

template < typename T >
constexpr bool foo(T const& tuple) {
  return hana::all_of(tuple, is_C_Type);
}

int main() {
  constexpr auto  test = std::tuple{hana::type_c<int>, hana::type_c<double>};
  static_assert(foo(test));
}

https://wandbox.org/permlink/YNZDX7uN6mgUdmje

答案 2 :(得分:1)

以下示例说明如何检查tuple是否仅包含定义类型名type的类型。这里的技巧是定义一个元组类型,为元组std::pair<std::pair<...std::pair<void, T0>, ...TN>, TM>定义一个新类型std::tuple<T0, ..., TN, TM>。这works in GCC 7.2。我对如何更清晰地结合可变参数约束感兴趣,因为我没有找到任何参考文献。

#include <array>
#include <tuple>

template<typename T>
struct Type {
    using type = T;
};

template<typename Tuple, size_t I = std::tuple_size<Tuple>::value>
struct TupleType {
    using type = std::pair<typename TupleType<Tuple, I - 1>::type,
                           typename std::tuple_element<I - 1, Tuple>::type>;
};

template<typename Tuple>
struct TupleType<Tuple, 0> {
    using type = void;
};

template<typename T>
concept bool C_TupleType = requires {
    typename TupleType<T>::type;
};

void foo(C_TupleType tuple) { }

int main() {
    constexpr auto test = std::make_tuple(Type<int>{}, Type<double>{});
    foo(test);

    // also works on pair and array
    constexpr auto test1 = std::make_pair(Type<int>{}, Type<double>{});
    foo(test1);
    constexpr std::array<Type<int>, 3> test2;
    foo(test2);

    // and of course TupleType is also a meta type
    constexpr std::array<TupleType<std::pair<int, int>>, 13> test3;
    foo(test3);

    return 0;
}