2013-04-13 00:04:01 +09:00
|
|
|
#ifndef SPROUT_FUNCTIONAL_HASH_STD_UTILITY_HPP
|
|
|
|
#define SPROUT_FUNCTIONAL_HASH_STD_UTILITY_HPP
|
|
|
|
|
|
|
|
#include <cstddef>
|
|
|
|
#include <utility>
|
|
|
|
#include <sprout/config.hpp>
|
2013-04-22 13:04:27 +09:00
|
|
|
#include <sprout/functional/hash/hash_value_traits.hpp>
|
|
|
|
#include <sprout/functional/hash/hash_values.hpp>
|
2013-04-13 00:04:01 +09:00
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
//
|
2013-04-22 13:04:27 +09:00
|
|
|
// hash_value_traits
|
2013-04-13 00:04:01 +09:00
|
|
|
//
|
|
|
|
template<typename T1, typename T2>
|
2013-04-22 13:04:27 +09:00
|
|
|
struct hash_value_traits<std::pair<T1, T2> > {
|
|
|
|
public:
|
|
|
|
static SPROUT_CONSTEXPR std::size_t
|
|
|
|
hash_value(std::pair<T1, T2> const& v) {
|
|
|
|
return sprout::hash_values(v.first, v.second);
|
|
|
|
}
|
|
|
|
};
|
2013-04-13 00:04:01 +09:00
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_FUNCTIONAL_HASH_STD_UTILITY_HPP
|