aboutsummaryrefslogtreecommitdiff
path: root/src/list/generator/iota.h
blob: 56ebecac07e5aa7ed5d4d377d7946634c884b5ff (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
#ifndef TYPEASVALUE_SRC_LIST_GENERATOR_IOTA_H_
#define TYPEASVALUE_SRC_LIST_GENERATOR_IOTA_H_

#include "operation/math.h"

namespace tav {

template <
	typename Count,
	typename Initial,
	typename Step
>
struct Iota {
	typedef Eval<Cons<
		Initial,
		Eval<Iota<
			Substract<Count, Size<1>>,
			Add<Initial, Step>,
			Step
		>>
	>> type;
};

template <
	typename Initial,
	typename Step
>
struct Iota<Size<1>, Initial, Step> {
	typedef Eval<Cons<Initial, void>> type;
};

}

#endif  // TYPEASVALUE_SRC_LIST_GENERATOR_IOTA_H_