Skip to main content

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

1use core::ops::{BitAnd, BitOr, BitXor, Not};
2
3use crate::bint::{impls::ops::bits::bits_impl, Int};
4
5bits_impl!(Int, I);