Skip to content

Integer-backed decimals with constant precision

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT
Notifications You must be signed in to change notification settings

OliverNChalk/const-decimal

Repository files navigation

Const Decimal

const-decimal is a fixed precision decimal backed by an underlying integer. This means it can compute Add/Sub/Mul/Div* operations within it's range without precision loss. This crate was created as there was no pre-existing crate that offered these features for decimal numbers (fixed cannot represent decimals with precision).

This is a fairly simple crate and is mainly intended to serve as a lossless representation of decimal values. While math operations are supported it is not intended to be a general purpose maths library.

* Division can of course truncate like normal division.

Goals

The goals in order of priority are:

  • Safety: Panic on over/underflow (even in release).
  • Precision: Use integers instead of floats.
  • Performance: Use primitive underlying types were possible.

About

Integer-backed decimals with constant precision

Resources

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages