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