Crate largeint[][src]

A library that implements the LargeInt struct, used for working with arbitrarily large integers in Rust. The purpose of this library is to provide an easy-to-use large integer implementation in Rust. The ideal user is one that is looking to write small scale projects for personal use and does not want to spend time a lot of time learning a complex crate such as num-bigint. For example, this library would be ideal for one looking to solve Project Euler Problem 13. However, the largeint library is not particularly efficient and therefore it is recommended to use a crate like num-bigint for more serious projects.

Modules

largeint

Implements the LargeInt struct. Supported methods include addition, subtraction, multiplication, division (floor division), and remainder from floor division. Also includes getters and a compare method.