Sprout/sprout/string/hash.hpp

46 lines
1.3 KiB
C++
Raw Normal View History

2013-08-08 09:54:33 +00:00
/*=============================================================================
2016-02-25 09:48:28 +00:00
Copyright (c) 2011-2016 Bolero MURAKAMI
2013-08-08 09:54:33 +00:00
https://github.com/bolero-MURAKAMI/Sprout
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
=============================================================================*/
2012-04-14 10:06:21 +00:00
#ifndef SPROUT_STRING_HASH_HPP
#define SPROUT_STRING_HASH_HPP
#include <functional>
#include <sprout/config.hpp>
#include <sprout/workaround/std/cstddef.hpp>
2012-04-14 10:06:21 +00:00
#include <sprout/string/string.hpp>
2013-02-04 09:42:39 +00:00
#include <sprout/functional/hash.hpp>
2012-04-14 10:06:21 +00:00
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) {
2013-02-04 14:48:18 +00:00
return sprout::hash_range(v);
2012-04-14 10:06:21 +00:00
}
} // namespace sprout
namespace std {
2013-04-21 04:30:30 +00:00
#if defined(__clang__)
# pragma clang diagnostic push
# pragma clang diagnostic ignored "-Wmismatched-tags"
#endif
//
// hash
//
template<typename T, std::size_t N, typename Traits>
struct hash<sprout::basic_string<T, N, Traits> >
: public sprout::hash<sprout::basic_string<T, N, Traits> >
{};
2013-04-21 04:30:30 +00:00
#if defined(__clang__)
# pragma clang diagnostic pop
#endif
} // namespace std
2012-04-14 10:06:21 +00:00
#endif // #ifndef SPROUT_STRING_HASH_HPP