aboutsummaryrefslogtreecommitdiff
path: root/src/list/operation/higher/misc.h
blob: 280c0d5c8259fe48684aa956e8577e5d0da14c1b (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
46
47
48
49
#ifndef TYPEASVALUE_SRC_LIST_OPERATION_HIGHER_MISC_H_
#define TYPEASVALUE_SRC_LIST_OPERATION_HIGHER_MISC_H_

#include "fold.h"
#include "list/operation/concatenate.h"

namespace tav {

template <
	template<typename> class Function,
	typename                 List
>
class Map {
	private:
		template <
			typename Current,
			typename Previous
		>
		struct FunctionWrapper {
			typedef Cons<Function<Current>, Previous> type;
		};

	public:
		typedef typename Fold<FunctionWrapper, void, List>::type type;

};

template <typename List>
class Reverse {
	private:
		template <
			typename Current,
			typename Previous
		>
		struct ReversedConcatenate {
			typedef typename Concatenate<
				Previous,
				Cons<Current, void>
			>::type type;
		};

	public:
		typedef typename Fold<ReversedConcatenate, void, List>::type type;

};

}

#endif  // TYPEASVALUE_SRC_LIST_OPERATION_HIGHER_MISC_H_