mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-07-14 15:04:09 +00:00
fix adapt interface: container, tuple, hash, generator
This commit is contained in:
parent
61720b72c3
commit
74e0c8acd6
36 changed files with 975 additions and 1061 deletions
|
@ -4,17 +4,21 @@
|
|||
#include <cstddef>
|
||||
#include <array>
|
||||
#include <sprout/config.hpp>
|
||||
#include <sprout/functional/hash.hpp>
|
||||
#include <sprout/functional/hash/hash_value_traits.hpp>
|
||||
#include <sprout/functional/hash/hash_range.hpp>
|
||||
|
||||
namespace sprout {
|
||||
//
|
||||
// hash_value
|
||||
// hash_value_traits
|
||||
//
|
||||
template<typename T, std::size_t N>
|
||||
inline SPROUT_CONSTEXPR std::size_t
|
||||
hash_value(std::array<T, N> const& v) {
|
||||
return sprout::hash_range(v);
|
||||
}
|
||||
struct hash_value_traits<std::array<T, N> > {
|
||||
public:
|
||||
static SPROUT_CONSTEXPR std::size_t
|
||||
hash_value(std::array<T, N> const& v) {
|
||||
return sprout::hash_range(v);
|
||||
}
|
||||
};
|
||||
} // namespace sprout
|
||||
|
||||
#endif // #ifndef SPROUT_FUNCTIONAL_HASH_STD_ARRAY_HPP
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue