Sprout/sprout/rational/hash.hpp

31 lines
653 B
C++
Raw Normal View History

2012-08-28 16:16:12 +00:00
#ifndef SPROUT_RATIONAL_HASH_HPP
#define SPROUT_RATIONAL_HASH_HPP
#include <cstddef>
#include <sprout/config.hpp>
#include <sprout/rational/rational.hpp>
2013-02-04 09:42:39 +00:00
#include <sprout/functional/hash.hpp>
2012-08-28 16:16:12 +00:00
namespace sprout {
//
// hash_value
//
template<typename T>
2012-10-05 15:58:56 +00:00
inline SPROUT_CONSTEXPR std::size_t
hash_value(sprout::rational<T> const& v) {
2012-08-28 16:16:12 +00:00
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