2013-04-12 15:04:01 +00:00
|
|
|
#ifndef SPROUT_FUNCTIONAL_HASH_STD_ARRAY_HPP
|
|
|
|
#define SPROUT_FUNCTIONAL_HASH_STD_ARRAY_HPP
|
|
|
|
|
|
|
|
#include <cstddef>
|
|
|
|
#include <array>
|
|
|
|
#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>
|
2013-04-12 15:04:01 +00:00
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
//
|
2013-04-22 04:04:27 +00:00
|
|
|
// hash_value_traits
|
2013-04-12 15:04:01 +00:00
|
|
|
//
|
|
|
|
template<typename T, std::size_t N>
|
2013-04-22 04:04:27 +00:00
|
|
|
struct hash_value_traits<std::array<T, N> > {
|
|
|
|
public:
|
|
|
|
static SPROUT_CONSTEXPR std::size_t
|
|
|
|
hash_value(std::array<T, N> const& v) {
|
|
|
|
return sprout::hash_range(v);
|
|
|
|
}
|
|
|
|
};
|
2013-04-12 15:04:01 +00:00
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_FUNCTIONAL_HASH_STD_ARRAY_HPP
|