2012-06-22 19:14:21 +09:00
|
|
|
#ifndef SPROUT_ARRAY_HASH_HPP
|
|
|
|
#define SPROUT_ARRAY_HASH_HPP
|
|
|
|
|
|
|
|
#include <cstddef>
|
2013-02-07 03:11:17 +09:00
|
|
|
#include <functional>
|
2012-06-22 19:14:21 +09:00
|
|
|
#include <sprout/config.hpp>
|
|
|
|
#include <sprout/array/array.hpp>
|
2013-02-04 18:42:39 +09:00
|
|
|
#include <sprout/functional/hash.hpp>
|
2012-06-22 19:14:21 +09:00
|
|
|
|
|
|
|
namespace sprout {
|
2013-02-04 10:24:23 +09:00
|
|
|
//
|
|
|
|
// hash_value
|
|
|
|
//
|
2012-06-22 19:14:21 +09:00
|
|
|
template<typename T, std::size_t N>
|
2012-10-05 01:53:39 +09:00
|
|
|
inline SPROUT_CONSTEXPR std::size_t
|
|
|
|
hash_value(sprout::array<T, N> const& v) {
|
2013-02-04 23:48:18 +09:00
|
|
|
return sprout::hash_range(v);
|
2012-06-22 19:14:21 +09:00
|
|
|
}
|
|
|
|
} // namespace sprout
|
|
|
|
|
2013-02-07 03:11:17 +09:00
|
|
|
namespace std {
|
|
|
|
//
|
|
|
|
// hash
|
|
|
|
//
|
|
|
|
template<typename T, std::size_t N>
|
|
|
|
struct hash<sprout::array<T, N> >
|
|
|
|
: public sprout::hash<sprout::array<T, N> >
|
|
|
|
{};
|
|
|
|
} // namespace std
|
|
|
|
|
2012-06-22 19:14:21 +09:00
|
|
|
#endif // #ifndef SPROUT_ARRAY_HASH_HPP
|