2012-04-14 10:06:21 +00:00
|
|
|
#ifndef SPROUT_STRING_HASH_HPP
|
|
|
|
#define SPROUT_STRING_HASH_HPP
|
|
|
|
|
|
|
|
#include <cstddef>
|
2012-06-22 10:14:21 +00:00
|
|
|
#include <sprout/config.hpp>
|
2012-04-14 10:06:21 +00:00
|
|
|
#include <sprout/string/string.hpp>
|
|
|
|
#include <sprout/functional/hash/hash.hpp>
|
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
//
|
|
|
|
// hash_value
|
|
|
|
//
|
|
|
|
template<typename T, std::size_t N, typename Traits>
|
2012-10-05 15:58:56 +00:00
|
|
|
inline SPROUT_CONSTEXPR std::size_t
|
|
|
|
hash_value(sprout::basic_string<T, N, Traits> const& v) {
|
2012-04-14 10:06:21 +00:00
|
|
|
return sprout::hash_range(v.begin(), v.end());
|
|
|
|
}
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_STRING_HASH_HPP
|