fastnum 0.7.4

Fast decimal numbers library
Documentation
1
2
3
4
5
6
7
8
use crate::decimal::UnsignedDecimal;

impl<const N: usize> Default for UnsignedDecimal<N> {
    #[inline]
    fn default() -> Self {
        Self::ZERO
    }
}