#decimal #math #precision #arithmetic-operations #place #floats #preserving

decimal-wad

Math for preserving precision floats up to 18 decimal places

9 releases

0.1.9 May 31, 2023
0.1.8 Oct 27, 2022
0.1.7 Aug 22, 2022
0.1.6 Jul 20, 2022
0.1.2 Nov 30, 2021

#523 in Algorithms

Download history 156/week @ 2024-01-10 179/week @ 2024-01-17 264/week @ 2024-01-24 103/week @ 2024-01-31 198/week @ 2024-02-07 175/week @ 2024-02-14 105/week @ 2024-02-21 91/week @ 2024-02-28 56/week @ 2024-03-06 94/week @ 2024-03-13 51/week @ 2024-03-20 91/week @ 2024-03-27 55/week @ 2024-04-03 98/week @ 2024-04-10 118/week @ 2024-04-17 125/week @ 2024-04-24

414 downloads per month

MIT license

23KB
673 lines

Decimal WAD

Math for preserving precision floats which are limited to be at most u64::MAX.

  • Decimals are internally scaled by a WAD (10^18) to preserve precision up to 18 decimal places.
  • Decimals are sized to support both serialization and precise math for the full range of unsigned 64-bit integers.
  • The underlying representation of decimals is a u192 rather than u256 to reduce compute cost while losing support for arithmetic operations at the high end of u64 range.
  • Rates are sized to support both serialization and precise math for the full range of unsigned 8-bit integers.
  • The underlying representation of rates is a u128 rather than u192 to reduce compute cost while losing support for arithmetic operations at the high end of u8 range.

Dependencies

~245KB