8 releases

0.4.1 Jan 12, 2024
0.4.0 Sep 12, 2023
0.3.1 Dec 8, 2022
0.3.0 Nov 10, 2022
0.1.1 Jul 16, 2022

#437 in Math

Download history 951/week @ 2023-12-17 322/week @ 2023-12-24 648/week @ 2023-12-31 728/week @ 2024-01-07 365/week @ 2024-01-14 697/week @ 2024-01-21 674/week @ 2024-01-28 633/week @ 2024-02-04 488/week @ 2024-02-11 604/week @ 2024-02-18 589/week @ 2024-02-25 665/week @ 2024-03-03 641/week @ 2024-03-10 578/week @ 2024-03-17 602/week @ 2024-03-24 898/week @ 2024-03-31

2,741 downloads per month
Used in 20 crates (5 directly)

MIT/Apache

650KB
14K SLoC

dashu-int

Arbitrary precision integer implementation as a part of the dashu library. See Docs.rs for the full documentation.

The majority of the code is based on the ibig crate. The modification notice based on the the original ibig repo is included in the NOTICE file.

Features

  • Supports no_std and written in pure Rust.
  • Support for both unsigned and signed big integers.
  • Small integers are inlined on stack with specialized algorithms.
  • Efficient implementation for basic arithmetic operations (+,-,*,/,%,<<,>>).
  • Support advanced arithmetic operations including pow, ilog, gcd, gcd_ext.
  • Bit operations for signed big integers follow the 2's complement rule.
  • Efficient implementation for modular arithmetics (e.g. modular powering and inverse).
  • Efficient integer parsing and printing with base 2~36.
  • Developer friendly debug printing for big integers.
  • Direct access to underlying machine word array.

Optional dependencies

  • std (default): for std::error::Error.
  • num-traits (default): integral traits.
  • rand (default): random number generation.
  • serde: serialization and deserialization.

Performance

See the built-in benchmark.

License

See the top-level readme.

Dependencies

~280–600KB
~12K SLoC