1 unstable release
0.1.0 | Oct 22, 2024 |
---|
#840 in Algorithms
153 downloads per month
38KB
1K
SLoC
Wheel algebra library for Rust
use wheel::*;
let inf = w64::ONE / w64::ZERO;
assert_eq!(w64::INFINITY, inf);
Types
Floating point wheel numbers
w32
(Wheel32
)w64
(Wheel64
)
Quotient wheel numbers
qw8
(`FractionWheel8')qw16
(FractionWheel16
)qw32
(FractionWheel32
)qw64
(FractionWheel64
)qw128
(FractionWheel128
)
License
Apache 2.0 or MPL 2.0.
lib.rs
:
Wheel
Wheel algebra library for Rust
use wheel::*;
let inf = w64::ONE / w64::ZERO;
assert_eq!(inf, w64::INFINITY);