1use core::ops::{Sub, SubAssign}; 2 3use crate::bint::{impls::ops::sub::sub_impl, UInt}; 4 5sub_impl!(UInt, U);