在C ++ 11中将静态constexpr数组转换为模板参数

时间:2019-04-10 01:26:11

标签: c++ c++11 templates variadic-templates template-meta-programming

假设我们有一个constexpr数组,如下所示:

static constexpr unsigned int a[] = {2, 8, ... ,6}; // N element

我想将此数组用作模板参数包:

typedef SomeTemplatedStruct<a[0], a[1], ... ,a[N - 1]> tmp;

在C ++ 14中可以这样做,如here所述。但是,我未能将该代码转换为C ++ 11。任何帮助表示赞赏。

2 个答案:

答案 0 :(得分:2)

如果您已经准备好自己滚动了,则无需实现整数序列助手,因为我们可以使用已扩展包的大小作为索引,以在递归过程中从数组中取出下一个元素:

template <typename A, A& a, typename U = typename std::remove_reference<decltype(a[0])>::type, bool = true, U... unpack>
struct unravel;

template <typename T, int N, T (&a)[N], typename U, U... unpack>
struct unravel<T[N], a, U, false, unpack...>
{
    template <template <U...> class Thingie>
    using into = Thingie<unpack...>;
};

template <typename T, int N, T (&a)[N], typename U, U... unpack>
struct unravel<T[N], a, U, true, unpack...> : unravel<T[N], a, U, (sizeof...(unpack) + 1 < N), unpack..., a[sizeof...(unpack)]> {};

用法:

struct Blub
{
    static constexpr unsigned int a[] = {2, 8, 5, 7, 6};
};

template <unsigned int...>
struct TheThingToMake {};

void test()
{
    typename unravel<decltype(Blub::a), Blub::a>::into<TheThingToMake> blub;
}

live example

注意:这不适用于大小为0的数组,但它们是非标准的,而且我想这反过来并不是一个有趣的用例……

答案 1 :(得分:1)

我能想象的最好的情况是开发一种std::index_sequencestd::make_index_sequence的C ++ 11替代品,并应用您已链接的C ++ 14解决方案。

但是,如果避免使用,则可以使用递归。

给出一个自制的整数序列

template <typename T, T...>
struct myIntegerSequence
 { };

和帮助程序结构mot_h(“使输出模板帮助程序”)

template <typename T, T, std::size_t, typename>
struct mot_h;

// recursive version
template <typename T, std::size_t N, const T(&A)[N], std::size_t Pos, T ... ts>
struct mot_h<const T(&)[N], A, Pos, myIntegerSequence<T, ts...>>
   : mot_h<const T(&)[N], A, Pos+1u, myIntegerSequence<T, ts..., A[Pos]>>
 { };

// ground case
template <typename T, std::size_t N, const T(&A)[N], T ... ts>
struct mot_h<const T(&)[N], A, N, myIntegerSequence<T, ts...>>
 { using type = myIntegerSequence<T, ts...>; };

您可以编写以下模板output

template <typename T, T inp>
using output = typename mot_h<T, inp, 0u,
   myIntegerSequence<
      typename std::remove_const<
         typename std::remove_reference<decltype(inp[0])>::type>::type>
         >::type;

以下是完整的C ++ 11示例

#include <type_traits>

template <typename T, T...>
struct myIntegerSequence
 { };

constexpr int input[] = { 2, 3, 5, 7, 11, 13, 17, 19 };

template <std::size_t N, typename T, const T (&A)[N]>
struct foo
 { };

template <typename T, T, std::size_t, typename>
struct mot_h;

template <typename T, std::size_t N, const T(&A)[N], std::size_t Pos, T ... ts>
struct mot_h<const T(&)[N], A, Pos, myIntegerSequence<T, ts...>>
   : mot_h<const T(&)[N], A, Pos+1u, myIntegerSequence<T, ts..., A[Pos]>>
 { };

template <typename T, std::size_t N, const T(&A)[N], T ... ts>
struct mot_h<const T(&)[N], A, N, myIntegerSequence<T, ts...>>
 { using type = myIntegerSequence<T, ts...>; };

template <typename T, T inp>
using output = typename mot_h<T, inp, 0u,
   myIntegerSequence<
      typename std::remove_const<
         typename std::remove_reference<decltype(inp[0])>::type>::type>
         >::type;

int main ()
 {
   using target = myIntegerSequence<int, 2, 3, 5, 7, 11, 13, 17, 19>;

   static_assert( std::is_same<output<decltype((input)), input>,
                               target>::value, "!" );
 }