yotta 0.2.0

A no_std arbitrary-precision arithmetic library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use crate::Yotta;
use core::ops::Neg;

impl Neg for Yotta {
    type Output = Self;
    fn neg(self) -> Self {
        Yotta {
            negative: !self.negative,
            ..self
        }
    }
}