1use core::ops::{Mul, MulAssign}; 2 3use crate::bint::{impls::ops::mul::mul_impl, UInt}; 4 5mul_impl!(UInt, U);