2012-06-22 19:14:21 +09:00
|
|
|
#ifndef SPROUT_PIT_HASH_HPP
|
|
|
|
#define SPROUT_PIT_HASH_HPP
|
2012-06-21 13:34:26 +09:00
|
|
|
|
2012-06-22 19:14:21 +09:00
|
|
|
#include <cstddef>
|
2012-06-21 13:34:26 +09:00
|
|
|
#include <sprout/config.hpp>
|
2012-06-22 19:14:21 +09:00
|
|
|
#include <sprout/pit/pit.hpp>
|
2013-02-04 18:42:39 +09:00
|
|
|
#include <sprout/functional/hash.hpp>
|
2012-06-21 13:34:26 +09:00
|
|
|
|
|
|
|
namespace sprout {
|
2013-02-04 10:24:23 +09:00
|
|
|
//
|
|
|
|
// hash_value
|
|
|
|
//
|
2012-06-21 13:34:26 +09:00
|
|
|
template<typename Container>
|
2012-10-06 00:58:56 +09:00
|
|
|
inline SPROUT_CONSTEXPR std::size_t
|
|
|
|
hash_value(sprout::pit<Container> const& v) {
|
2012-09-21 15:43:30 +09:00
|
|
|
return sprout::to_hash(v.elem);
|
2012-06-21 13:34:26 +09:00
|
|
|
}
|
|
|
|
} // namespace sprout
|
|
|
|
|
2013-02-07 03:11:17 +09:00
|
|
|
namespace std {
|
|
|
|
//
|
|
|
|
// hash
|
|
|
|
//
|
|
|
|
template<typename Container>
|
|
|
|
struct hash<sprout::pit<Container> >
|
|
|
|
: public sprout::hash<sprout::pit<Container> >
|
|
|
|
{};
|
|
|
|
} // namespace std
|
|
|
|
|
2012-06-22 19:14:21 +09:00
|
|
|
#endif // #ifndef SPROUT_PIT_HASH_HPP
|