2013-08-08 09:54:33 +00:00
|
|
|
/*=============================================================================
|
2014-01-08 07:48:12 +00:00
|
|
|
Copyright (c) 2011-2014 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)
|
|
|
|
=============================================================================*/
|
2011-10-12 20:28:33 +00:00
|
|
|
#ifndef SPROUT_FUNCTIONAL_HASH_SSCRISK_CEL_ARRAY_HPP
|
|
|
|
#define SPROUT_FUNCTIONAL_HASH_SSCRISK_CEL_ARRAY_HPP
|
|
|
|
|
|
|
|
#include <cstddef>
|
2013-04-12 15:04:01 +00:00
|
|
|
#include <sscrisk/cel/array.hpp>
|
2011-10-12 20:28:33 +00:00
|
|
|
#include <sprout/config.hpp>
|
2013-04-22 04:04:27 +00:00
|
|
|
#include <sprout/functional/hash/hash_value_traits.hpp>
|
|
|
|
#include <sprout/functional/hash/hash_range.hpp>
|
2011-10-12 20:28:33 +00:00
|
|
|
|
|
|
|
namespace sprout {
|
2012-10-06 04:53:07 +00:00
|
|
|
//
|
2013-04-22 04:04:27 +00:00
|
|
|
// hash_value_traits
|
2012-10-06 04:53:07 +00:00
|
|
|
//
|
2011-10-12 20:28:33 +00:00
|
|
|
template<typename T, std::size_t N>
|
2013-04-22 04:04:27 +00:00
|
|
|
struct hash_value_traits<sscrisk::cel::array<T, N> > {
|
|
|
|
public:
|
|
|
|
static SPROUT_CONSTEXPR std::size_t
|
|
|
|
hash_value(sscrisk::cel::array<T, N> const& v) {
|
|
|
|
return sprout::hash_range(v);
|
|
|
|
}
|
|
|
|
};
|
2011-10-12 20:28:33 +00:00
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_FUNCTIONAL_HASH_SSCRISK_CEL_ARRAY_HPP
|