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