dashu-int 0.6.0-rc.4

Arbitrary-precision integer math library for Rust, balancing ergonomics and efficiency. Provides UBig and IBig (unsigned and signed), with small values inlined on the stack. Efficient arithmetic, modular arithmetic, and number theory (pow, ilog, gcd, gcd_ext); two's-complement bit operations; parsing and formatting in base 2-36; optional serde, rand, num-traits, rkyv, and zeroize.
Documentation
1
2
3
4
5
6
7
8
9
//! Re-exported relevant operator traits from `dashu-base`

pub use dashu_base::bit::{BitTest, PowerOfTwo};
pub use dashu_base::math::{CubicRoot, EstimatedLog2, SquareRoot};
pub use dashu_base::ring::{
    CubicRootRem, DivEuclid, DivRem, DivRemAssign, DivRemEuclid, ExtendedGcd, Gcd, RemEuclid,
    SquareRootRem,
};
pub use dashu_base::sign::{Abs, UnsignedAbs};