1use core::ops::{Div, DivAssign}; 2 3use crate::bint::{impls::ops::div::div_impl, UInt}; 4 5div_impl!(UInt, U);