Sprout/sprout/pit/hash.hpp

20 lines
453 B
C++

#ifndef SPROUT_PIT_HASH_HPP
#define SPROUT_PIT_HASH_HPP
#include <cstddef>
#include <sprout/config.hpp>
#include <sprout/functional/hash/hash.hpp>
#include <sprout/pit/pit.hpp>
namespace sprout {
//
// hash_value
//
template<typename Container>
inline SPROUT_CONSTEXPR std::size_t
hash_value(sprout::pit<Container> const& v) {
return sprout::to_hash(v.elem);
}
} // namespace sprout
#endif // #ifndef SPROUT_PIT_HASH_HPP