#ifndef SPROUT_RATIONAL_HASH_HPP #define SPROUT_RATIONAL_HASH_HPP #include #include #include #include namespace sprout { // // hash_value // template inline SPROUT_CONSTEXPR std::size_t hash_value(sprout::rational const& v) { return sprout::hash_values(v.numerator(), v.denominator()); } } // namespace sprout #endif // SPROUT_RATIONAL_HASH_HPP