2013-02-04 10:24:23 +09:00
|
|
|
#ifndef SPROUT_UTILITY_PAIR_HASH_HPP
|
|
|
|
#define SPROUT_UTILITY_PAIR_HASH_HPP
|
|
|
|
|
|
|
|
#include <cstddef>
|
|
|
|
#include <sprout/config.hpp>
|
|
|
|
#include <sprout/utility/pair/pair.hpp>
|
2013-02-04 18:42:39 +09:00
|
|
|
#include <sprout/functional/hash.hpp>
|
2013-02-04 10:24:23 +09:00
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
//
|
|
|
|
// hash_value
|
|
|
|
//
|
|
|
|
template<typename T1, typename T2>
|
|
|
|
inline SPROUT_CONSTEXPR std::size_t
|
|
|
|
hash_value(sprout::pair<T1, T2> const& v) {
|
|
|
|
return sprout::hash_values(v.first, v.second);
|
|
|
|
}
|
|
|
|
} // namespace sprout
|
|
|
|
|
2013-02-07 03:11:17 +09:00
|
|
|
namespace std {
|
|
|
|
//
|
|
|
|
// hash
|
|
|
|
//
|
|
|
|
template<typename T1, typename T2>
|
|
|
|
struct hash<sprout::pair<T1, T2> >
|
|
|
|
: public sprout::hash<sprout::pair<T1, T2> >
|
|
|
|
{};
|
|
|
|
} // namespace std
|
|
|
|
|
2013-02-04 10:24:23 +09:00
|
|
|
#endif // #ifndef SPROUT_UTILITY_PAIR_HASH_HPP
|