fastnum/decimal/unsigned/impls/ops/
neg.rs

1
2
3
4
5
6
7
8
9
10
11
12
use core::ops::Neg;

use crate::decimal::{signed::Decimal, unsigned::UnsignedDecimal};

impl<const N: usize> Neg for UnsignedDecimal<N> {
    type Output = Decimal<N>;

    #[inline]
    fn neg(self) -> Decimal<N> {
        self.neg()
    }
}