Skip to main content

fastnum/bint/int/impls/
fmt.rs

1use core::fmt::{self, Debug, Display, Formatter};
2
3use crate::bint::{impls::fmt::fmt_impl, Int};
4
5fmt_impl!(Int, I);