Skip to main content

fastnum/bint/int/impls/ops/
neg.rs

1use core::ops::Neg;
2
3use crate::bint::{impls::ops::neg::neg_impl, Int};
4
5neg_impl!(Int, I);