Sprout/sprout/functional/hash/sscrisk/cel/array.hpp

25 lines
685 B
C++
Raw Normal View History

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>
#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
//
// 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>
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