Sprout/sprout/bitset/hash.hpp
bolero-MURAKAMI 66da9f4fea fix math::log implementation
support std::hash
2013-02-07 03:11:17 +09:00

31 lines
599 B
C++

#ifndef SPROUT_BITSET_HASH_HPP
#define SPROUT_BITSET_HASH_HPP
#include <cstddef>
#include <sprout/config.hpp>
#include <sprout/bitset/bitset.hpp>
namespace sprout {
// 20.5.3 hash support
//
// hash_value
//
template<std::size_t N>
inline SPROUT_CONSTEXPR std::size_t
hash_value(sprout::bitset<N> const& v) {
return v.to_hash();
}
} // namespace sprout
namespace std {
//
// hash
//
template<std::size_t N>
struct hash<sprout::bitset<N> >
: public sprout::hash<sprout::bitset<N> >
{};
} // namespace std
#endif // #ifndef SPROUT_BITSET_HASH_HPP