#ifndef SPROUT_FUNCTIONAL_HASH_HASH_COMBINE_HPP #define SPROUT_FUNCTIONAL_HASH_HASH_COMBINE_HPP #include #include #include #include namespace sprout { namespace detail { template inline SPROUT_CONSTEXPR std::size_t hash_combine_impl(std::size_t seed) { return seed; } template inline SPROUT_CONSTEXPR std::size_t hash_combine_impl(std::size_t seed, T const& v) { return seed ^ (sprout::to_hash(v) + 0x9e3779b9 + (seed << 6) + (seed >> 2)); } template inline SPROUT_CONSTEXPR std::size_t hash_combine_impl(std::size_t seed, Head const& head, Tail const&... tail) { return sprout::detail::hash_combine_impl(sprout::detail::hash_combine_impl(seed, head), tail...); } } // namespace detail // // hash_combine // template inline SPROUT_CONSTEXPR std::size_t hash_combine(std::size_t seed, Args const&... args) { return sprout::detail::hash_combine_impl(seed, args...); } } // namespace sprout #endif // #ifndef SPROUT_FUNCTIONAL_HASH_HASH_COMBINE_HPP