Crates.io | dummy-library- |
lib.rs | dummy-library- |
version | 0.0.2 |
source | src |
created_at | 2023-10-16 14:51:48.016529 |
updated_at | 2023-10-16 14:51:48.016529 |
description | Dummy Library |
homepage | https://github.com/ |
repository | https://github.com/ |
max_upload_size | |
id | 1004841 |
size | 17,359 |
A light fixed-point math library for Rust. Written specifically to be used in Soroban and other WASM based blockchain environments.
This is experimental software and is provided on an "as is" and "as available" basis.
We do not give any warranties and will not be liable for any loss incurred through any use of this codebase.
Add this to your Cargo.toml
:
[dependencies]
fixed-point-math = "<desired version>"
Fixed-point math support is currently added to both i128
and u64
types. For any supported number, you can perform fixed-point operations like this:
use fixed_point_math::{STROOP, FixedPoint};
let x: u64 = 1_5000000;
let y: u64 = 2_0000000;
assert_eq!(x.fixed_mul_floor(y, STROOP).unwrap(), 3_0000000);
Overflowing results are handled in the same manner as Rust's built-in "checked" math, by returning None
.
Fixed-point math also deals with phantom overflows, where an intermediary computation overflows but the expected result would be within bounds. This library manages this differently for each supported type:
i128
is large enough to support most computation with 7/9 decimal values. However, its likely 18-decimal math will encounter overflows.u128
, and it is attempted again.This library was inspired by or directly modified from many sources, primary:
The WASM target wasm32-unknown-unknown
is supported.
Contributions are welcome. Please check out the contribution guide (TODO)!
This library is released under the MIT License.