7 #if !defined(CNL_IMPL_FRACTION_CANONICAL_H)
8 #define CNL_IMPL_FRACTION_CANONICAL_H
10 #include "definition.h"
16 template<
typename Numerator,
typename Denominator>
17 [[nodiscard]] constexpr
auto negated(fraction<Numerator, Denominator>
const& rhs)
19 return _impl::make_fraction(-rhs.numerator, -rhs.denominator);
22 template<
typename Numerator,
typename Denominator>
23 [[nodiscard]] constexpr
auto canonical_from_reduce(
24 fraction<Numerator, Denominator>
const& f)
26 return (f.denominator < Denominator(0.)) ? negated(f) : f;
29 template<
typename Numerator,
typename Denominator>
30 [[nodiscard]] constexpr
auto canonical(fraction<Numerator, Denominator>
const& f)
32 return canonical_from_reduce(reduce(f));
37 #endif // CNL_IMPL_FRACTION_CANONICAL_H