Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Sequence array initialization with template

I want to initialize an array with a sequence of ints from 0 to N - 1

#include <array>
#include <iostream>

template<unsigned N>
struct XArray
{
    static constexpr int array[N] = {XArray<N - 1>::array, N - 1};
};

template<>
struct XArray<1>
{
    static constexpr int array[1] = {0};
};


int main(void)
{
    std::array<int, 10> const   a{XArray<10>::array};

    for (int const & i : a)
        std::cout << i << "\n";
    return 0;
}

I tried that, but it does not work, since XArray<N - 1>::array in my struct must be int, and not int *. How can I do this ? How to "concatenate" the values ?

like image 217
Boiethios Avatar asked May 18 '16 10:05

Boiethios


1 Answers

I'm not sure if this meets your requirements.

#include <array>
#include <iostream>

template <size_t ...I>
constexpr auto init(std::index_sequence<I...>) {
    return std::array<size_t, sizeof...(I)>{I...};
}

int main(void)
{
    std::array<size_t, 10> a = init(std::make_index_sequence<10>());

    for (int const & i : a)
        std::cout << i << "\n";
    return 0;
}
like image 56
Shangtong Zhang Avatar answered Sep 30 '22 21:09

Shangtong Zhang