Added HashCombine function

Former-commit-id: 852deae33143138f2841e226690bfef94d3ba2b9
This commit is contained in:
Lynix
2015-02-24 20:00:13 +01:00
parent cadeae5e21
commit 96a5bc950c
2 changed files with 19 additions and 0 deletions

View File

@@ -8,8 +8,10 @@
#define NAZARA_ALGORITHM_CORE_HPP
#include <Nazara/Prerequesites.hpp>
#include <functional>
#include <tuple>
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>