Core/Algorithm: Replace UnpackTuple by Apply

Former-commit-id: dccf9a102e4287035184053e1d60abc0edaf1a1d
This commit is contained in:
Lynix
2015-08-20 13:35:51 +02:00
parent 4d5cea8afe
commit 481a191693
3 changed files with 13 additions and 26 deletions

View File

@@ -11,8 +11,8 @@
#include <functional>
#include <tuple>
template<typename F, typename Tuple> auto NzApply(F&& fn, Tuple&& t);
template<typename T> void NzHashCombine(std::size_t& seed, const T& v);
template<typename F, typename... ArgsT> void NzUnpackTuple(F func, const std::tuple<ArgsT...>& t);
#include <Nazara/Core/Algorithm.inl>