https://github.com/c1m50c/big-int
Rust Library implementing a Big Integer.
https://github.com/c1m50c/big-int
big-int int integer integers library mit-license rust
Last synced: about 2 months ago
JSON representation
Rust Library implementing a Big Integer.
- Host: GitHub
- URL: https://github.com/c1m50c/big-int
- Owner: c1m50c
- Created: 2021-12-01T22:46:26.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-12-02T03:03:09.000Z (over 4 years ago)
- Last Synced: 2025-12-30T10:01:08.366Z (6 months ago)
- Topics: big-int, int, integer, integers, library, mit-license, rust
- Language: Rust
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.MD
Awesome Lists containing this project
README
# **big-int**
[](https://github.com/c1m50c/big-int/actions/workflows/build.yml)
Library implementing a **big int**, which is a numerically limitless integer.
For example the Rust built-in type `i32` can only range from `-2147483648 | -(2^31)` to `2147483648 | (2 ^ 31)`,
with **big int** this range is virtually non-existent.
## **Testing**
```bash
$ cd big-int
$ cargo test
...
test result: ok # If things go well test should pass.
```