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