Trait typenum::type_operators::Cmp

source ·
pub trait Cmp<Rhs = Self> {
    type Output;
}
Expand description

A type operator for comparing Self and Rhs. It provides a similar functionality to the function core::cmp::Ord::cmp but for types.

§Example

use typenum::{Cmp, Ord, N3, P2, P5};
use std::cmp::Ordering;

assert_eq!(<P2 as Cmp<N3>>::Output::to_ordering(), Ordering::Greater);
assert_eq!(<P2 as Cmp<P2>>::Output::to_ordering(), Ordering::Equal);
assert_eq!(<P2 as Cmp<P5>>::Output::to_ordering(), Ordering::Less);

Required Associated Types§

source

type Output

The result of the comparison. It should only ever be one of Greater, Less, or Equal.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl Cmp for B0

source§

impl Cmp for B1

source§

impl Cmp for Z0

0 == 0

source§

impl Cmp for UTerm

Zero == Zero

source§

impl Cmp<B0> for B1

source§

impl Cmp<B1> for B0

source§

impl<Nl: Unsigned + NonZero, Nr: Cmp<Nl> + Unsigned + NonZero> Cmp<NInt<Nr>> for NInt<Nl>

-X <==> -Y

source§

type Output = <Nr as Cmp<Nl>>::Output

source§

impl<P: Unsigned + NonZero, N: Unsigned + NonZero> Cmp<NInt<N>> for PInt<P>

X > - Y

source§

impl<P: Unsigned + NonZero, N: Unsigned + NonZero> Cmp<PInt<P>> for NInt<N>

-X < Y

source§

impl<Pl: Cmp<Pr> + Unsigned + NonZero, Pr: Unsigned + NonZero> Cmp<PInt<Pr>> for PInt<Pl>

X <==> Y

source§

type Output = <Pl as Cmp<Pr>>::Output

source§

impl<U: Unsigned + NonZero> Cmp<NInt<U>> for Z0

0 > -X

source§

impl<U: Unsigned + NonZero> Cmp<PInt<U>> for Z0

0 < X

source§

impl<U: Unsigned + NonZero> Cmp<Z0> for NInt<U>

-X < 0

source§

impl<U: Unsigned + NonZero> Cmp<Z0> for PInt<U>

X > 0

source§

impl<U: Unsigned, B: Bit> Cmp<UInt<U, B>> for UTerm

Zero < Nonzero

source§

impl<U: Unsigned, B: Bit> Cmp<UTerm> for UInt<U, B>

Nonzero > Zero

source§

impl<Ul, Ur: Unsigned> Cmp<UInt<Ur, B0>> for UInt<Ul, B0>
where Ul: PrivateCmp<Ur, Equal> + Unsigned,

UInt<Ul, B0> cmp with UInt<Ur, B0>: SoFar is Equal

source§

type Output = <Ul as PrivateCmp<Ur, Equal>>::Output

source§

impl<Ul, Ur: Unsigned> Cmp<UInt<Ur, B0>> for UInt<Ul, B1>
where Ul: PrivateCmp<Ur, Greater> + Unsigned,

UInt<Ul, B1> cmp with UInt<Ur, B0>: SoFar is Greater

source§

type Output = <Ul as PrivateCmp<Ur, Greater>>::Output

source§

impl<Ul, Ur: Unsigned> Cmp<UInt<Ur, B1>> for UInt<Ul, B0>
where Ul: PrivateCmp<Ur, Less> + Unsigned,

UInt<Ul, B0> cmp with UInt<Ur, B1>: SoFar is Less

source§

type Output = <Ul as PrivateCmp<Ur, Less>>::Output

source§

impl<Ul, Ur: Unsigned> Cmp<UInt<Ur, B1>> for UInt<Ul, B1>
where Ul: PrivateCmp<Ur, Equal> + Unsigned,

UInt<Ul, B1> cmp with UInt<Ur, B1>: SoFar is Equal

source§

type Output = <Ul as PrivateCmp<Ur, Equal>>::Output