Experimenting with numbers in Rust
Go to file
Timothy Warren d90b762754 Implement Bigint from implementation for integer types larger than the pointer type 2020-09-11 15:23:42 -04:00
benches Partially implement multiplication, code formatting 2020-03-13 14:17:25 -04:00
src Implement Bigint from implementation for integer types larger than the pointer type 2020-09-11 15:23:42 -04:00
tests Remove integration test from code coverage 2020-03-05 22:12:00 -05:00
.gitignore First commit 2020-02-12 22:29:57 -05:00
Cargo.lock Add benchmarks 2020-02-20 17:13:46 -05:00
Cargo.toml Add no_std support and testing 2020-04-16 14:07:12 -04:00
Jenkinsfile Add no_std support and testing 2020-04-16 14:07:12 -04:00
Makefile Add makefile for code coverage operations, increase code coverage 2020-02-19 21:10:53 -05:00
README.md Partially implement multiplication, code formatting 2020-03-13 14:17:25 -04:00

README.md

Rusty Numbers

Playing around with numeric types in Rust.

Build Status

Components

  • Rational (fraction) type, which overloads arithmatic operators
  • Various fibonacci/factorial implementations for native numeric types
  • BigInt (high precision integer) type, overloading arithmatic operators