mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-07-16 15:14:13 +00:00
modify: tuple and hash support(class adapt) implemented in each class headers.
This commit is contained in:
parent
3a2610cb5c
commit
ee8c952d05
35 changed files with 1720 additions and 1557 deletions
16
sprout/array/hash.hpp
Normal file
16
sprout/array/hash.hpp
Normal file
|
@ -0,0 +1,16 @@
|
|||
#ifndef SPROUT_ARRAY_HASH_HPP
|
||||
#define SPROUT_ARRAY_HASH_HPP
|
||||
|
||||
#include <cstddef>
|
||||
#include <sprout/config.hpp>
|
||||
#include <sprout/functional/hash/hash.hpp>
|
||||
#include <sprout/array/array.hpp>
|
||||
|
||||
namespace sprout {
|
||||
template<typename T, std::size_t N>
|
||||
inline 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_ARRAY_HASH_HPP
|
Loading…
Add table
Add a link
Reference in a new issue