1use crate::decimal::UnsignedDecimal; 2 3impl<const N: usize> Default for UnsignedDecimal<N> { 4 #[inline] 5 fn default() -> Self { 6 Self::ZERO 7 } 8}