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

https://github.com/windowsnt/n

A simple c++ 11 bignum library
https://github.com/windowsnt/n

Last synced: 8 months ago
JSON representation

A simple c++ 11 bignum library

Awesome Lists containing this project

README

          

# N

A small C++ bignum library. Uses only C++ elements.

You can compile with N_MT to use multithread adding and multiplication - Uses https://github.com/progschj/ThreadPool

You can compile with N_SMALLVECTOR to use a stack vector for small numbers instead of std::vector - Uses https://github.com/thelink2012/SmallVector