-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmultipleVariadicArguments.hpp
47 lines (37 loc) · 1.62 KB
/
multipleVariadicArguments.hpp
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
#ifndef MULTIPLE_VARIADIC_ARGUMENTS_HPP
#define MULTIPLE_VARIADIC_ARGUMENTS_HPP
#if __cplusplus >= 201103L
#define USE_CPP11
#endif
#ifdef USE_CPP11
#include <tuple>
#endif
#include "multipleVariadicArguments_Impl.hpp"
#ifdef USE_CPP11
template<typename... T>
struct MultipleVariadicArgumentSeparatorHandler {
enum { SeparatorPosition = detail::MultipleVariadicArgumentSeparatorHandler_Impl<T...>::SeparatorPosition };
};
template<typename... T>
constexpr auto findSeparatorPosition(const T...) -> unsigned int {
return MultipleVariadicArgumentSeparatorHandler<T...>::SeparatorPosition;
}
template<typename... T>
constexpr auto hasSeparator(const T...) -> bool {
return (MultipleVariadicArgumentSeparatorHandler<T...>::SeparatorPosition < sizeof...(T));
}
template <int nbOfArgumentsToTake, int offset, typename F, typename Tuple>
void callMultipleArgumentFunctionTuple(F& f, Tuple&& t) {
detail::callMultipleArgumentFunctionTuple<nbOfArgumentsToTake, offset, (nbOfArgumentsToTake >= 0), F, Tuple>::call(f, std::forward<Tuple>(t));
}
template<typename F, typename... Args>
auto callMultipleArgumentFunction(F& f, Args... args) -> void {
auto newTuple = std::make_tuple(args...);
callMultipleArgumentFunctionTuple<MultipleVariadicArgumentSeparatorHandler<Args...>::SeparatorPosition, 0>(f, newTuple);
if(findSeparatorPosition(args...) + 1 < sizeof...(args)) {
// Means there are arguments behind the separator
callMultipleArgumentFunctionTuple<sizeof...(args)-MultipleVariadicArgumentSeparatorHandler<Args...>::SeparatorPosition-1, MultipleVariadicArgumentSeparatorHandler<Args...>::SeparatorPosition+1>(f, newTuple);
}
}
#endif
#endif