Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mllimo/big-numbers

C++ Library designed for efficient handling of extremely large numbers.
https://github.com/mllimo/big-numbers

arbitrary-sized-integers biginteger bignumber cpp17 cpp20 help-wanted wip

Last synced: 9 days ago
JSON representation

C++ Library designed for efficient handling of extremely large numbers.

Awesome Lists containing this project

README

        

# big-numbers - WIP
C++ Library designed for efficient handling of extremely large numbers.

## What big-numbers does?
Express infinite integer numbers efficiently using arithmetic and comparison operators.

## Why big-numbers is useful?
If one aims to perform operations with infinitely large numbers, this library strives to carry out these operations efficiently.
In contrast to other libraries, numbers are not represented as text strings but rather as a vector of uint64_t numbers. This enables direct calculations
on the numbers without the need for unnecessary conversions or operating digit by digit, as operations can be performed directly on the n digits that this data type handles.