mirror of
https://github.com/bolero-MURAKAMI/Sprout
synced 2024-11-12 21:09:01 +00:00
19 lines
480 B
C++
19 lines
480 B
C++
|
#ifndef SPROUT_RATIONAL_CONVERSION_HPP
|
||
|
#define SPROUT_RATIONAL_CONVERSION_HPP
|
||
|
|
||
|
#include <sprout/config.hpp>
|
||
|
#include <sprout/rational/rational.hpp>
|
||
|
|
||
|
namespace sprout {
|
||
|
//
|
||
|
// rational_cast
|
||
|
//
|
||
|
template<typename T, typename IntType>
|
||
|
inline SPROUT_CONSTEXPR T
|
||
|
rational_cast(sprout::rational<IntType> const& src) {
|
||
|
return static_cast<T>(src.numerator()) / static_cast<T>(src.denominator());
|
||
|
}
|
||
|
} // namespace sprout
|
||
|
|
||
|
#endif // SPROUT_RATIONAL_CONVERSION_HPP
|