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