Skip to main content

fastnum/bint/uint/impls/
default.rs

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