#ifndef SPROUT_STRING_HASH_HPP #define SPROUT_STRING_HASH_HPP #include #include #include #include namespace sprout { // // hash_value // template inline SPROUT_CONSTEXPR std::size_t hash_value(sprout::basic_string const& v) { return sprout::hash_range(v); } } // namespace sprout namespace std { // // hash // template struct hash > : public sprout::hash > {}; } // namespace std #endif // #ifndef SPROUT_STRING_HASH_HPP