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