1
0
Fork 0
mirror of https://github.com/bolero-MURAKAMI/Sprout synced 2024-11-12 21:09:01 +00:00
Sprout/sprout/pit/hash.hpp
bolero-MURAKAMI 66da9f4fea fix math::log implementation
support std::hash
2013-02-07 03:11:17 +09:00

30 lines
633 B
C++

#ifndef SPROUT_PIT_HASH_HPP
#define SPROUT_PIT_HASH_HPP
#include <cstddef>
#include <sprout/config.hpp>
#include <sprout/pit/pit.hpp>
#include <sprout/functional/hash.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
namespace std {
//
// hash
//
template<typename Container>
struct hash<sprout::pit<Container> >
: public sprout::hash<sprout::pit<Container> >
{};
} // namespace std
#endif // #ifndef SPROUT_PIT_HASH_HPP