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
58
59
60
61
62
63
64
65
66
use core::cmp::Ordering;
use crate::api::{BigIntApi, ManagedTypeApi};
use super::BigUint;
impl<M: ManagedTypeApi> PartialEq for BigUint<M> {
#[inline]
fn eq(&self, other: &Self) -> bool {
M::managed_type_impl()
.bi_cmp(self.handle, other.handle)
.is_eq()
}
}
impl<M: ManagedTypeApi> Eq for BigUint<M> {}
impl<M: ManagedTypeApi> PartialOrd for BigUint<M> {
#[inline]
fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
Some(self.cmp(other))
}
}
impl<M: ManagedTypeApi> Ord for BigUint<M> {
#[inline]
fn cmp(&self, other: &Self) -> Ordering {
M::managed_type_impl().bi_cmp(self.handle, other.handle)
}
}
fn cmp_i64<M: ManagedTypeApi>(bi: &BigUint<M>, other: i64) -> Ordering {
let api = M::managed_type_impl();
if other == 0 {
match api.bi_sign(bi.handle) {
crate::api::Sign::Plus => Ordering::Greater,
crate::api::Sign::NoSign => Ordering::Equal,
crate::api::Sign::Minus => Ordering::Less,
}
} else {
api.bi_cmp(bi.handle, api.bi_new(other))
}
}
macro_rules! partial_eq_and_ord {
($small_int_type:ident) => {
impl<M: ManagedTypeApi> PartialEq<$small_int_type> for BigUint<M> {
#[inline]
fn eq(&self, other: &$small_int_type) -> bool {
cmp_i64(self, *other as i64).is_eq()
}
}
impl<M: ManagedTypeApi> PartialOrd<$small_int_type> for BigUint<M> {
#[inline]
fn partial_cmp(&self, other: &$small_int_type) -> Option<Ordering> {
Some(cmp_i64(self, *other as i64))
}
}
};
}
partial_eq_and_ord! {i32}
partial_eq_and_ord! {i64}
partial_eq_and_ord! {u32}
partial_eq_and_ord! {u64}