Sprout/sprout/string/hash.hpp
2012-10-06 00:58:56 +09:00

20 lines
519 B
C++

#ifndef SPROUT_STRING_HASH_HPP
#define SPROUT_STRING_HASH_HPP
#include <cstddef>
#include <sprout/config.hpp>
#include <sprout/string/string.hpp>
#include <sprout/functional/hash/hash.hpp>
namespace sprout {
//
// hash_value
//
template<typename T, std::size_t N, typename Traits>
inline SPROUT_CONSTEXPR std::size_t
hash_value(sprout::basic_string<T, N, Traits> const& v) {
return sprout::hash_range(v.begin(), v.end());
}
} // namespace sprout
#endif // #ifndef SPROUT_STRING_HASH_HPP