use crate::uint::U256;
use core::cmp::Ordering;
impl Ord for U256 {
#[inline]
fn cmp(&self, other: &Self) -> Ordering {
self.into_words().cmp(&other.into_words())
}
}
impl_cmp! {
impl Cmp for U256 (u128);
}
#[cfg(test)]
mod tests {
use super::*;
use core::cmp::Ordering;
#[test]
fn cmp() {
let x = U256::from_words(0, 100000000000000000000000000000000000000);
let y = U256::from_words(2938735877, 18960114910927365649471927446130393088);
assert!(x < y);
assert_eq!(x.cmp(&y), Ordering::Less);
assert!(y > x);
assert_eq!(y.cmp(&x), Ordering::Greater);
let x = U256::new(100);
let y = U256::new(100);
assert!(x <= y);
assert_eq!(x.cmp(&y), Ordering::Equal);
}
}