aboutsummaryrefslogtreecommitdiff
path: root/src/function/apply.h
blob: d353169374ae09b8dfbf11f3de5a503beb1a4244 (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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#ifndef TYPEASVALUE_SRC_FUNCTION_APPLY_H_
#define TYPEASVALUE_SRC_FUNCTION_APPLY_H_

#include <type_traits>

namespace tav {

namespace detail {

struct placeholder_tag { };

template <typename Type>
using is_placeholder = tav::Boolean<
	std::is_base_of<placeholder_tag, Type>::value
>;

template <int Index>
struct placeholder : placeholder_tag { };

template <
	typename Partials,
	typename Argument
>
struct resolve_placeholder {
	typedef Argument type;
};

template <
	typename Partials,
	int      Index
>
struct resolve_placeholder<Partials, placeholder<Index>> {
	typedef typename Nth<Size<Index>, Partials>::type type;
};

}

typedef detail::placeholder<0> _0;
typedef detail::placeholder<1> _1;
typedef detail::placeholder<2> _2;
typedef detail::placeholder<3> _3;

template <
	template<typename...> class Function,
	typename...                 Arguments
>
struct Apply {
	typedef typename tav::List<Arguments...>::type argument_list;

	template <typename... Partials>
	using type = Function<
		typename detail::resolve_placeholder<
			typename tav::List<Partials...>::type,
			Arguments
		>::type...
	>;

	template <typename Partials>
	using single_type = type<Partials>;
};

}

#endif  // TYPEASVALUE_SRC_FUNCTION_APPLY_H_