aboutsummaryrefslogtreecommitdiff
path: root/src/list/operation/nth.h
blob: 08e60ccaacedad533cebe112de12385fcc4bc26d (plain)
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
39
40
41
42
43
44
45
#ifndef TYPEASVALUE_SRC_LIST_OPERATION_NTH_H_
#define TYPEASVALUE_SRC_LIST_OPERATION_NTH_H_

#include "operation/math.h"

namespace tav {

template <
	typename Index,
	typename Pair
>
struct Nth {
	typedef Eval<Nth<
		Substract<Index, Size<1>>,
		Tail<Pair>
	>> type;
};

template <typename Pair>
struct Nth<Size<0>, Pair> {
	typedef Head<Pair> type;
};

template <typename Index>
struct Nth<Index, void> {
	typedef void type;
};

template <>
struct Nth<Size<0>, void> {
	typedef void type;
};

template <typename List>
using First  = Eval<Nth<Size<0>, List>>;

template <typename List>
using Second = Eval<Nth<Size<1>, List>>;

template <typename List>
using Third  = Eval<Nth<Size<2>, List>>;

}

#endif  // TYPEASVALUE_SRC_LIST_OPERATION_NTH_H_