use super::UInt;
use crate::{Checked, CheckedSub, Limb, Wrapping, Zero};
use core::ops::{Sub, SubAssign};
use subtle::CtOption;
impl<const LIMBS: usize> UInt<LIMBS> {
#[inline(always)]
pub const fn sbb(&self, rhs: &Self, mut borrow: Limb) -> (Self, Limb) {
let mut limbs = [Limb::ZERO; LIMBS];
let mut i = 0;
while i < LIMBS {
let (w, b) = self.limbs[i].sbb(rhs.limbs[i], borrow);
limbs[i] = w;
borrow = b;
i += 1;
}
(Self { limbs }, borrow)
}
pub const fn saturating_sub(&self, rhs: &Self) -> Self {
let (res, underflow) = self.sbb(rhs, Limb::ZERO);
if underflow.0 == 0 {
res
} else {
Self::ZERO
}
}
pub const fn wrapping_sub(&self, rhs: &Self) -> Self {
self.sbb(rhs, Limb::ZERO).0
}
}
impl<const LIMBS: usize> CheckedSub<&UInt<LIMBS>> for UInt<LIMBS> {
type Output = Self;
fn checked_sub(&self, rhs: &Self) -> CtOption<Self> {
let (result, underflow) = self.sbb(rhs, Limb::ZERO);
CtOption::new(result, underflow.is_zero())
}
}
impl<const LIMBS: usize> Sub for Wrapping<UInt<LIMBS>> {
type Output = Self;
fn sub(self, rhs: Self) -> Wrapping<UInt<LIMBS>> {
Wrapping(self.0.wrapping_sub(&rhs.0))
}
}
impl<const LIMBS: usize> Sub<&Wrapping<UInt<LIMBS>>> for Wrapping<UInt<LIMBS>> {
type Output = Wrapping<UInt<LIMBS>>;
fn sub(self, rhs: &Wrapping<UInt<LIMBS>>) -> Wrapping<UInt<LIMBS>> {
Wrapping(self.0.wrapping_sub(&rhs.0))
}
}
impl<const LIMBS: usize> Sub<Wrapping<UInt<LIMBS>>> for &Wrapping<UInt<LIMBS>> {
type Output = Wrapping<UInt<LIMBS>>;
fn sub(self, rhs: Wrapping<UInt<LIMBS>>) -> Wrapping<UInt<LIMBS>> {
Wrapping(self.0.wrapping_sub(&rhs.0))
}
}
impl<const LIMBS: usize> Sub<&Wrapping<UInt<LIMBS>>> for &Wrapping<UInt<LIMBS>> {
type Output = Wrapping<UInt<LIMBS>>;
fn sub(self, rhs: &Wrapping<UInt<LIMBS>>) -> Wrapping<UInt<LIMBS>> {
Wrapping(self.0.wrapping_sub(&rhs.0))
}
}
impl<const LIMBS: usize> SubAssign for Wrapping<UInt<LIMBS>> {
fn sub_assign(&mut self, other: Self) {
*self = *self - other;
}
}
impl<const LIMBS: usize> SubAssign<&Wrapping<UInt<LIMBS>>> for Wrapping<UInt<LIMBS>> {
fn sub_assign(&mut self, other: &Self) {
*self = *self - other;
}
}
impl<const LIMBS: usize> Sub for Checked<UInt<LIMBS>> {
type Output = Self;
fn sub(self, rhs: Self) -> Checked<UInt<LIMBS>> {
Checked(
self.0
.and_then(|lhs| rhs.0.and_then(|rhs| lhs.checked_sub(&rhs))),
)
}
}
impl<const LIMBS: usize> Sub<&Checked<UInt<LIMBS>>> for Checked<UInt<LIMBS>> {
type Output = Checked<UInt<LIMBS>>;
fn sub(self, rhs: &Checked<UInt<LIMBS>>) -> Checked<UInt<LIMBS>> {
Checked(
self.0
.and_then(|lhs| rhs.0.and_then(|rhs| lhs.checked_sub(&rhs))),
)
}
}
impl<const LIMBS: usize> Sub<Checked<UInt<LIMBS>>> for &Checked<UInt<LIMBS>> {
type Output = Checked<UInt<LIMBS>>;
fn sub(self, rhs: Checked<UInt<LIMBS>>) -> Checked<UInt<LIMBS>> {
Checked(
self.0
.and_then(|lhs| rhs.0.and_then(|rhs| lhs.checked_sub(&rhs))),
)
}
}
impl<const LIMBS: usize> Sub<&Checked<UInt<LIMBS>>> for &Checked<UInt<LIMBS>> {
type Output = Checked<UInt<LIMBS>>;
fn sub(self, rhs: &Checked<UInt<LIMBS>>) -> Checked<UInt<LIMBS>> {
Checked(
self.0
.and_then(|lhs| rhs.0.and_then(|rhs| lhs.checked_sub(&rhs))),
)
}
}
impl<const LIMBS: usize> SubAssign for Checked<UInt<LIMBS>> {
fn sub_assign(&mut self, other: Self) {
*self = *self - other;
}
}
impl<const LIMBS: usize> SubAssign<&Checked<UInt<LIMBS>>> for Checked<UInt<LIMBS>> {
fn sub_assign(&mut self, other: &Self) {
*self = *self - other;
}
}
#[cfg(test)]
mod tests {
use crate::{CheckedSub, Limb, U128};
#[test]
fn sbb_no_borrow() {
let (res, borrow) = U128::ONE.sbb(&U128::ONE, Limb::ZERO);
assert_eq!(res, U128::ZERO);
assert_eq!(borrow, Limb::ZERO);
}
#[test]
fn sbb_with_borrow() {
let (res, borrow) = U128::ZERO.sbb(&U128::ONE, Limb::ZERO);
assert_eq!(res, U128::MAX);
assert_eq!(borrow, Limb::MAX);
}
#[test]
fn wrapping_sub_no_borrow() {
assert_eq!(U128::ONE.wrapping_sub(&U128::ONE), U128::ZERO);
}
#[test]
fn wrapping_sub_with_borrow() {
assert_eq!(U128::ZERO.wrapping_sub(&U128::ONE), U128::MAX);
}
#[test]
fn checked_sub_ok() {
let result = U128::ONE.checked_sub(&U128::ONE);
assert_eq!(result.unwrap(), U128::ZERO);
}
#[test]
fn checked_sub_overflow() {
let result = U128::ZERO.checked_sub(&U128::ONE);
assert!(!bool::from(result.is_some()));
}
}