Lines
100 %
Functions
Branches
use crate::int::Sealed as _;
use crate::{Denominator, Integer, NotOne, Numerator, Recip, Q};
use core::ops::{Div, Rem};
use typenum::{Mod, Quot};
pub trait PrivateF64Helper {
const F64: f64;
}
impl<N> PrivateF64Helper for Q<N>
where
N: Numerator,
{
const F64: f64 = N::F64;
impl<N, D> PrivateF64Helper for Q<N, D>
N: Numerator<D> + Div<D> + Rem<D>,
D: Denominator + NotOne + Numerator,
Quot<N, D>: Integer,
Mod<N, D>: Numerator<D>,
Q<Mod<N, D>, D>: Recip,
<Q<Mod<N, D>, D> as Recip>::Output: PrivateF64Helper,
const F64: f64 =
Quot::<N, D>::F64 + 1_f64 / <<Q<Mod<N, D>, D> as Recip>::Output as PrivateF64Helper>::F64;
pub trait Sealed: PrivateF64Helper {
const F64: f64 = <Self as PrivateF64Helper>::F64;
impl<N, D> Sealed for Q<N, D>
Self: PrivateF64Helper,
N: Numerator<D>,
D: Denominator,
/// Type-level rational numbers.
pub trait Rational: 'static + Default + Copy + Sealed {
/// Approximate 64-bit floating point number of this rational number.
///
/// # Examples
/// ```
/// use typerat::*;
/// assert_eq!(Q::<Z0>::F64, 0_f64);
/// assert_eq!(Q::<P1>::F64, 1_f64);
/// assert_eq!(Q::<N1>::F64, -1_f64);
/// assert_eq!(Q::<N1, P2>::F64, -0.5_f64);
/// assert_eq!(Q::<P1, P3>::F64, 1_f64 / 3_f64);
/// assert_eq!(Q::<N5, P3>::F64, -1_f64 - 1_f64 / 1.5_f64);
/// Borrows an instance of this type-level rational number.
fn borrow<'a>() -> &'a Self;
impl<N, D> Rational for Q<N, D>
Self: Sealed,
fn borrow<'a>() -> &'a Self {
&Self::SELF
#[cfg(test)]
mod tests {
use super::*;
use typenum::consts::*;
fn default_and_borrow<'a, T>() -> (T, &'a T)
T: Rational,
(T::default(), T::borrow())
#[test]
fn test_borrow() {
let (a, b) = default_and_borrow::<Q<P1, P2>>();
assert_eq!(&a, b);