1 2 3 4 5 6 7 8 9 10 11 12
use core::ops::Neg; use crate::decimal::{Decimal, UnsignedDecimal}; impl<const N: usize> Neg for UnsignedDecimal<N> { type Output = Decimal<N>; #[inline] fn neg(self) -> Decimal<N> { self.neg() } }