mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-16 10:49:05 +00:00
1ef8a6a63b
support conversion array-like container iterator to pointer
31 lines
676 B
C++
31 lines
676 B
C++
#ifndef SPROUT_RATIONAL_HASH_HPP
|
|
#define SPROUT_RATIONAL_HASH_HPP
|
|
|
|
#include <cstddef>
|
|
#include <functional>
|
|
#include <sprout/config.hpp>
|
|
#include <sprout/rational/rational.hpp>
|
|
#include <sprout/functional/hash.hpp>
|
|
|
|
namespace sprout {
|
|
//
|
|
// hash_value
|
|
//
|
|
template<typename T>
|
|
inline SPROUT_CONSTEXPR std::size_t
|
|
hash_value(sprout::rational<T> const& v) {
|
|
return sprout::hash_values(v.numerator(), v.denominator());
|
|
}
|
|
} // namespace sprout
|
|
|
|
namespace std {
|
|
//
|
|
// hash
|
|
//
|
|
template<typename T>
|
|
struct hash<sprout::rational<T> >
|
|
: public sprout::hash<sprout::rational<T> >
|
|
{};
|
|
} // namespace std
|
|
|
|
#endif // SPROUT_RATIONAL_HASH_HPP
|