twibint 0.3.2

Crate for arithmetic on arbitrarily large integers. Provides Python bindings as well.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! (private) ops: private module containing all the arithmetic operations'
//! implementations. This is broken down into various submodules.

mod addsub;
mod bitwise;
mod divrem;
mod mul;
mod neg;
mod pow;
mod shift;
mod truediv;

#[cfg(test)]
mod test;