mirror of
https://github.com/bolero-MURAKAMI/Sprout
synced 2025-08-03 12:49:50 +00:00
add adapt std::array, std::pair
This commit is contained in:
parent
0437b24f12
commit
9e9556b62a
9 changed files with 218 additions and 2 deletions
|
@ -2,9 +2,9 @@
|
|||
#define SPROUT_FUNCTIONAL_HASH_SSCRISK_CEL_ARRAY_HPP
|
||||
|
||||
#include <cstddef>
|
||||
#include <sscrisk/cel/array.hpp>
|
||||
#include <sprout/config.hpp>
|
||||
#include <sprout/functional/hash.hpp>
|
||||
#include <sscrisk/cel/array.hpp>
|
||||
|
||||
namespace sprout {
|
||||
//
|
||||
|
|
|
@ -2,9 +2,9 @@
|
|||
#define SPROUT_FUNCTIONAL_HASH_SSCRISK_CEL_UTILITY_HPP
|
||||
|
||||
#include <cstddef>
|
||||
#include <sscrisk/cel/utility.hpp>
|
||||
#include <sprout/config.hpp>
|
||||
#include <sprout/functional/hash.hpp>
|
||||
#include <sscrisk/cel/utility.hpp>
|
||||
|
||||
namespace sprout {
|
||||
//
|
||||
|
|
20
sprout/functional/hash/std/array.hpp
Normal file
20
sprout/functional/hash/std/array.hpp
Normal file
|
@ -0,0 +1,20 @@
|
|||
#ifndef SPROUT_FUNCTIONAL_HASH_STD_ARRAY_HPP
|
||||
#define SPROUT_FUNCTIONAL_HASH_STD_ARRAY_HPP
|
||||
|
||||
#include <cstddef>
|
||||
#include <array>
|
||||
#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(std::array<T, N> const& v) {
|
||||
return sprout::hash_range(v);
|
||||
}
|
||||
} // namespace sprout
|
||||
|
||||
#endif // #ifndef SPROUT_FUNCTIONAL_HASH_STD_ARRAY_HPP
|
20
sprout/functional/hash/std/utility.hpp
Normal file
20
sprout/functional/hash/std/utility.hpp
Normal file
|
@ -0,0 +1,20 @@
|
|||
#ifndef SPROUT_FUNCTIONAL_HASH_STD_UTILITY_HPP
|
||||
#define SPROUT_FUNCTIONAL_HASH_STD_UTILITY_HPP
|
||||
|
||||
#include <cstddef>
|
||||
#include <utility>
|
||||
#include <sprout/config.hpp>
|
||||
#include <sprout/functional/hash.hpp>
|
||||
|
||||
namespace sprout {
|
||||
//
|
||||
// hash_value
|
||||
//
|
||||
template<typename T1, typename T2>
|
||||
inline SPROUT_CONSTEXPR std::size_t
|
||||
hash_value(std::pair<T1, T2> const& v) {
|
||||
return sprout::hash_values(v.first, v.second);
|
||||
}
|
||||
} // namespace sprout
|
||||
|
||||
#endif // #ifndef SPROUT_FUNCTIONAL_HASH_STD_UTILITY_HPP
|
Loading…
Add table
Add a link
Reference in a new issue