-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathget_args.cxx
38 lines (30 loc) · 1.14 KB
/
get_args.cxx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#include <tuple>
#include <type_traits>
#include <cstddef>
// Define a class template to get the index'th type pack element.
template<size_t index, typename T, typename... Ts>
struct get_pack_arg {
using type = typename get_pack_arg<index - 1, Ts...>::type;
};
template<typename T, typename... Ts>
struct get_pack_arg<0, T, Ts...> {
using type = T;
};
// Define a class template to expose a specialization's template arguments
// using argument deduction.
template<size_t index, typename T>
struct get_arg;
template<size_t index, template<typename...> class Temp, typename... Ts>
struct get_arg<index, Temp<Ts...> > {
using type = typename get_pack_arg<index, Ts...>::type;
};
// Define an alias template for ergonomics.
template<size_t index, typename T>
using get_arg_t = typename get_arg<index, T>::type;
// Test on a couple cases.
using T1 = std::pair<float, double>;
using T2 = std::tuple<char, short, int, long>;
static_assert(std::is_same_v<double, get_arg_t<1, T1> >);
static_assert(!std::is_same_v<char, get_arg_t<0, T1> >);
static_assert(std::is_same_v<int, get_arg_t<2, T2> >);
static_assert(!std::is_same_v<double, get_arg_t<1, T2> >);