use crate::num::arithmetic::traits::UnsignedAbs;
use crate::num::comparison::traits::EqAbs;
macro_rules! impl_eq_abs_unsigned {
($t:ident) => {
impl EqAbs<$t> for $t {
#[inline]
fn eq_abs(&self, other: &Self) -> bool {
self == other
}
}
};
}
apply_to_unsigneds!(impl_eq_abs_unsigned);
fn eq_abs_signed<U: Eq, S: Copy + UnsignedAbs<Output = U>>(x: &S, y: &S) -> bool {
x.unsigned_abs() == y.unsigned_abs()
}
macro_rules! impl_eq_abs_signed {
($t:ident) => {
impl EqAbs<$t> for $t {
#[inline]
fn eq_abs(&self, other: &Self) -> bool {
eq_abs_signed(self, other)
}
}
};
}
apply_to_signeds!(impl_eq_abs_signed);