mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-07-10 14:44:11 +00:00
functional/hash.hpp 追加
random/unique_seed.hpp 追加
This commit is contained in:
parent
1ebc833ea8
commit
305ae86d92
11 changed files with 381 additions and 0 deletions
17
sprout/functional/hash/array.hpp
Normal file
17
sprout/functional/hash/array.hpp
Normal file
|
@ -0,0 +1,17 @@
|
|||
#ifndef SPROUT_FUNCTIONAL_HASH_ARRAY_HPP
|
||||
#define SPROUT_FUNCTIONAL_HASH_ARRAY_HPP
|
||||
|
||||
#include <cstddef>
|
||||
#include <sprout/config.hpp>
|
||||
#include <sprout/functional/hash/hash.hpp>
|
||||
#include <sprout/array.hpp>
|
||||
|
||||
namespace sprout {
|
||||
template<typename T, std::size_t N>
|
||||
SPROUT_CONSTEXPR std::size_t hash_value(sprout::array<T, N> const& v) {
|
||||
return sprout::hash_range(v.begin(), v.end());
|
||||
}
|
||||
} // namespace sprout
|
||||
|
||||
#endif // #ifndef SPROUT_FUNCTIONAL_HASH_ARRAY_HPP
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue