Trivial implementation of big integers in Rust.
- Addition
- Subtraction
- Ordering
- Multiplication
- Division
- Shifting/Rotation
- Binary Operations
- Radix Conversion
- Power
- Square Root (?)
Refer to the tests/*
files to view implementation details (for eg, tests/test_addition.rs
demonstrates how addition operation is performed).
- Benchmarking
- Tests (Accepting Contributions)