1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
//! Module with comparison implementations for `I256`.
//!
//! `PartialEq` and `PartialOrd` implementations for `i128` are also provided
//! to allow notation such as:
//!
//! ```
//! # use ethnum::I256;
//! assert_eq!(I256::new(42), 42);
//! assert_eq!(42, I256::new(42));
//! assert!(I256::ONE > 0 && I256::ZERO == 0);
//! assert!(0 < I256::ONE && 0 == I256::ZERO);
//! ```

use super::I256;
use core::cmp::Ordering;

impl Ord for I256 {
    #[inline]
    fn cmp(&self, other: &Self) -> Ordering {
        let (ahi, alo) = self.into_words();
        let (bhi, blo) = other.into_words();
        (ahi, alo as u128).cmp(&(bhi, blo as u128))
    }
}

impl_cmp! {
    impl Cmp for I256 (i128);
}

#[cfg(test)]
mod tests {
    use super::*;
    use core::cmp::Ordering;

    #[test]
    fn cmp() {
        // 1e38
        let x = I256::from_words(0, 100000000000000000000000000000000000000);
        // 1e48
        let y = I256::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 = I256::new(100);
        let y = I256::new(100);
        assert!(x <= y);
        assert_eq!(x.cmp(&y), Ordering::Equal);

        assert!(I256::ZERO > I256::MIN);
        assert!(I256::ZERO < I256::MAX);

        assert!(I256::MAX > I256::MIN);
        assert!(I256::MIN < I256::MAX);
    }
}