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