zigfp icon indicating copy to clipboard operation
zigfp copied to clipboard

Basic fixed point implementation in Zig.

Results 3 zigfp issues
Sort by recently updated
recently updated
newest added

clarifications: - write 1. binary fixed point or change to Basic binary fixed point implementation, 2. decimal fixed points planned? - negative values: 1. remains unsupported?, 2. [sign-magnitude](https://en.wikipedia.org/wiki/Sign-magnitude) format, 3....

shouldn't this be i32p16? ```rust /// medium range, medium precision fixed point value between -32000 and +32000, with a precision of roughly 0.000015 pub const i32p64 = FixedPoint(32, 65536); ```