1 2 3 4 5 6 7 8 9 10 11
//! Fallible arbitrary-precision integers vendored from num-bigint 0.4.6 algorithms. //! //! See LICENSE in this directory for upstream attribution. mod alloc; mod biguint; mod digit; mod signed; pub use alloc::AllocError; pub use signed::BigInt;