2013-02-04 09:42:39 +00:00
|
|
|
#ifndef SPROUT_FUNCTIONAL_HASH_HASH_VALUES_HPP
|
|
|
|
#define SPROUT_FUNCTIONAL_HASH_HASH_VALUES_HPP
|
|
|
|
|
|
|
|
#include <cstddef>
|
|
|
|
#include <sprout/config.hpp>
|
|
|
|
#include <sprout/functional/hash/hash_fwd.hpp>
|
2013-02-04 13:13:27 +00:00
|
|
|
#include <sprout/functional/hash/hash_combine.hpp>
|
2013-02-04 09:42:39 +00:00
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
//
|
|
|
|
// hash_values
|
|
|
|
//
|
|
|
|
template<typename... Args>
|
|
|
|
inline SPROUT_CONSTEXPR std::size_t
|
|
|
|
hash_values(Args const&... args) {
|
2013-02-04 13:13:27 +00:00
|
|
|
return sprout::hash_combine(0, args...);
|
2013-02-04 09:42:39 +00:00
|
|
|
}
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_FUNCTIONAL_HASH_HASH_VALUES_HPP
|