scientific 0.5.3

Arbitrary precision scientific number (no_std capable, in pure Rust)
Documentation
1
2
3
4
5
6
7
8
use crate::types::sci::Sci;

impl Sci {
  #[inline]
  pub(crate) fn neg_assign(&mut self) {
    self.sign = !self.sign;
  }
}