Lines
100 %
Functions
Branches
use crate::{Denominator, Numerator, Q};
use core::cmp;
use core::ops::Mul;
use typenum::{Compare, Equal, Greater, Less, Ord, Prod};
mod private {
use super::*;
pub trait Sealed {
const INSTANCE: Self;
}
impl Sealed for Equal {
const INSTANCE: Self = Equal;
impl Sealed for Greater {
const INSTANCE: Self = Greater;
impl Sealed for Less {
const INSTANCE: Self = Less;
pub trait PrivateCmpHelper<Rhs = Self> {
type Output: Ordering;
impl<Nl, Dl, Nr, Dr> PrivateCmpHelper<Q<Nr, Dr>> for Q<Nl, Dl>
where
Nl: Numerator<Dl> + Mul<Dr>,
Dl: Denominator,
Nr: Numerator<Dr> + Mul<Dl>,
Dr: Denominator,
Prod<Nl, Dr>: typenum::Cmp<Prod<Nr, Dl>>,
Compare<Prod<Nl, Dr>, Prod<Nr, Dl>>: Ordering,
{
type Output = Compare<Prod<Nl, Dr>, Prod<Nr, Dl>>;
/// Type-level orderings.
pub trait Ordering: Ord + private::Sealed {}
impl Ordering for Equal {}
impl Ordering for Greater {}
impl Ordering for Less {}
/// Type-level comparison.
pub trait Cmp<Rhs = Self> {
/// The resulting type after type-level comparison.
/// Performs comparison.
fn cmp(&self, other: &Rhs) -> Self::Output {
let _ = other;
<Self::Output as private::Sealed>::INSTANCE
impl<Nl, Dl, Nr, Dr> Cmp<Q<Nr, Dr>> for Q<Nl, Dl>
Self: private::PrivateCmpHelper<Q<Nr, Dr>>,
Nl: Numerator<Dl>,
Nr: Numerator<Dr>,
type Output = <Self as private::PrivateCmpHelper<Q<Nr, Dr>>>::Output;
impl<Nl, Dl, Nr, Dr> PartialEq<Q<Nr, Dr>> for Q<Nl, Dl>
Self: Cmp<Q<Nr, Dr>>,
fn eq(&self, other: &Q<Nr, Dr>) -> bool {
<Self as Cmp<Q<Nr, Dr>>>::Output::to_ordering() == cmp::Ordering::Equal
impl<Nl, Dl, Nr, Dr> PartialOrd<Q<Nr, Dr>> for Q<Nl, Dl>
fn partial_cmp(&self, other: &Q<Nr, Dr>) -> Option<cmp::Ordering> {
Some(<Self as Cmp<Q<Nr, Dr>>>::Output::to_ordering())
#[cfg(test)]
mod tests {
use typenum::consts::*;
#[test]
fn test_cmp() {
assert_eq!(Q::<P1, P2>::new().cmp(&Q::<P1, P3>::new()), Greater);
assert_eq!(Q::<N1, P2>::new().cmp(&Q::<P1, P3>::new()), Less);
assert_eq!(Q::<N1, P2>::new().cmp(&Q::<N1, P2>::new()), Equal);
fn test_eq() {
assert!(Q::<P1, P2>::new() != Q::<P1, P3>::new());
assert!(Q::<N1, P2>::new() != Q::<P1, P3>::new());
assert!(Q::<N1, P2>::new() == Q::<N1, P2>::new());
fn test_ord() {
assert!(Q::<P1, P2>::new() > Q::<P1, P3>::new());
assert!(Q::<N1, P2>::new() < Q::<P1, P3>::new());
assert!(Q::<N1, P2>::new() >= Q::<N1, P2>::new());
assert!(Q::<N1, P2>::new() <= Q::<N1, P2>::new());