15

In c++, how can I implement a function with an int template argument indicating the tuple length and produce a std::tuple with that length?

E.g.

func<2>() returns std::tuple<int, int>();
func<5>() returns std::tuple<int, int, int, int, int>().
yuefengz
  • 3,338
  • 1
  • 17
  • 24
  • What did you try so far? – eerorika Aug 11 '16 at 00:12
  • 4
    obligatory: have you considered just using a `std::array`? You can use an `array` much like a tuple (with `std::tuple_size`, `std::get`, etc) and would simplify this a lot. – Ryan Haining Aug 11 '16 at 00:14
  • @user2079303, my intuition is we keep a list of types, count down from N to 0 and add int to the list when counter is decremented. When N is 0, returns that tuple with the type list. But I don't know how to carry it out. – yuefengz Aug 11 '16 at 00:16
  • @RyanHaining, I am calling a function that only accepts std::tuple. – yuefengz Aug 11 '16 at 00:17
  • 2
    @Fake I don't know if you're the author of that function, but generally using a tuple as a concrete type (ie: not in a generic context) is bad design. If you can, try to redesign the function to accept a "TupleLike" concept that supports `std::get` and such. – KABoissonneault Aug 11 '16 at 18:03

6 Answers6

17

Here is a recursive solution with alias template and it's implementable in C++11:

template <size_t I,typename T> 
struct tuple_n{
    template< typename...Args> using type = typename tuple_n<I-1, T>::template type<T, Args...>;
};

template <typename T> 
struct tuple_n<0, T> {
    template<typename...Args> using type = std::tuple<Args...>;   
};
template <size_t I,typename T>  using tuple_of = typename tuple_n<I,T>::template type<>;

For example if we want "tuple of 3 doubles" we can write:

tuple_of<3, double> t;
rahnema1
  • 15,264
  • 3
  • 15
  • 27
  • 1
    This is actually better than Ryan's solution IMO, even for C++14, because it's more generically useful - for example, you can declare variables with it. – celticminstrel Oct 03 '18 at 15:22
9

Using an index_sequence and a helper type alias you can generate the type you want:

// Just something to take a size_t and give the type `int`
template <std::size_t>
using Integer = int;

// will get a sequence of Is = 0, 1, ..., N
template <std::size_t... Is>
auto func_impl(std::index_sequence<Is...>) {
    // Integer<Is>... becomes one `int` for each element in Is...
    return std::tuple<Integer<Is>...>{};
}

template <std::size_t N>
auto func() {
    return func_impl(std::make_index_sequence<N>{});
}

It is worth calling out that in the general case you would probably be better with a std::array, (in your case you can't use one), but a std::array can behave like a tuple, similarly to a std::pair.

Update: since you've made it clear you're working with c++11 and not 14+, you'll need to get an implementation of index_sequence and related from somewhere (here is libc++'s). Here is the C++11 version of func and func_impl with explicit return types:

template <std::size_t... Is>
auto func_impl(std::index_sequence<Is...>) -> std::tuple<Integer<Is>...> {
  return std::tuple<Integer<Is>...>{};
}

template <std::size_t N>
auto func() -> decltype(func_impl(std::make_index_sequence<N>{})) {
  return func_impl(std::make_index_sequence<N>{});
}
Ryan Haining
  • 35,360
  • 15
  • 114
  • 174
5

The plain old recursion is your friend:

template<std::size_t N>
auto array_tuple() {
    return std::tuple_cat(std::tuple<int>{}, array_tuple<N-1>());
}

template<>
auto array_tuple<0>() {
    return std::tuple<>{};
}
eerorika
  • 232,697
  • 12
  • 197
  • 326
2

If you're okay with a C++14 solution, Ryan's answer is the way to go.

With C++11, you can do the following (still based on index_sequence, but that's implementable in C++11):

template <size_t N, class T, class = std::make_index_sequence<N>>
struct n_tuple;

template <size_t N, class T, size_t... Is>
struct n_tuple<N, T, std::index_sequence<Is...>> {
    template <size_t >
    using ignore = T;

    using type = std::tuple<ignore<Is>...>;
};

template <size_t N, class T>
using n_tuple_t = typename n_tuple<N, T>::type;

With that:

template <size_t N>
n_tuple_t<N, int> func() {
    return n_tuple_t<N, int>{};
}
Community
  • 1
  • 1
Barry
  • 286,269
  • 29
  • 621
  • 977
1

Here are two boost.hana solutions (C++14):

//first
hana::replicate<hana::tuple_tag>(int{}, hana::size_c<2>);

//second
hana::cycle(std::make_tuple(int{}), hana::size_c<2>);

Both produce integer-tuples of size 2, but instead of std::tuples they yield hana::tuples.

davidhigh
  • 14,652
  • 2
  • 44
  • 75
0

If for some reason you really want a tuple instead of an array, you may use std::tuple_cat on an array. I think this method is the best, because it does not require any third-party libraries nor even writing any template metaprogramming code by yourself.

std::array<int, 3> arr;
auto tup = std::tuple_cat(arr);
static_assert(std::is_same_v<decltype(tup), std::tuple<int, int, int>>);
i cant
  • 401
  • 2
  • 9