1use core::ops::{Add, AddAssign}; 2 3use crate::bint::{impls::ops::add::add_impl, UInt}; 4 5add_impl!(UInt, U);