aboutsummaryrefslogtreecommitdiff
path: root/src/list/operation/nth.h
blob: 1ffb1f03534275746ade160517979b98bf8ef7c2 (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
#ifndef TYPEASVALUE_SRC_LIST_OPERATION_NTH_H_
#define TYPEASVALUE_SRC_LIST_OPERATION_NTH_H_

#include "drop.h"
#include "conditional/if.h"
#include "operation/math.h"

namespace tav {

template <
	typename Index,
	typename List
>
using Nth = If<
	IsPair<Drop<Index, List>>,
	Head<Drop<Index, List>>,
	void
>;

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

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

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

}

#endif  // TYPEASVALUE_SRC_LIST_OPERATION_NTH_H_