use num_traits::Signed;
use crate::{util, Fp, UInt};
impl<U: UInt, const SIGN_BIT: bool, const EXP_SIZE: usize, const INT_SIZE: usize, const FRAC_SIZE: usize, const EXP_BASE: usize> Signed for Fp<U, SIGN_BIT, EXP_SIZE, INT_SIZE, FRAC_SIZE, EXP_BASE>
where
U: 'static,
[(); util::bitsize_of::<U>() - SIGN_BIT as usize - EXP_SIZE - INT_SIZE - FRAC_SIZE]:,
[(); EXP_BASE - 2]:
{
fn abs(&self) -> Self
{
(*self).abs()
}
fn abs_sub(&self, other: &Self) -> Self
{
#[allow(deprecated)]
(*self).abs_sub(*other)
}
fn signum(&self) -> Self
{
(*self).signum()
}
fn is_positive(&self) -> bool
{
(*self).is_sign_positive()
}
fn is_negative(&self) -> bool
{
(*self).is_sign_negative()
}
}