mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-16 10:49:05 +00:00
20 lines
534 B
C++
20 lines
534 B
C++
#ifndef SPROUT_FUNCTIONAL_HASH_SSCRISK_CEL_ARRAY_HPP
|
|
#define SPROUT_FUNCTIONAL_HASH_SSCRISK_CEL_ARRAY_HPP
|
|
|
|
#include <cstddef>
|
|
#include <sscrisk/cel/array.hpp>
|
|
#include <sprout/config.hpp>
|
|
#include <sprout/functional/hash.hpp>
|
|
|
|
namespace sprout {
|
|
//
|
|
// hash_value
|
|
//
|
|
template<typename T, std::size_t N>
|
|
inline SPROUT_CONSTEXPR std::size_t
|
|
hash_value(sscrisk::cel::array<T, N> const& v) {
|
|
return sprout::hash_range(v);
|
|
}
|
|
} // namespace sprout
|
|
|
|
#endif // #ifndef SPROUT_FUNCTIONAL_HASH_SSCRISK_CEL_ARRAY_HPP
|