large fixed-size const-generic numeric types for rust
num_bigint and num_rational provide arbitrary precision, while this library only gives ou fixed precision without allocating anything to the heap.
This can be usefull for embedded environments where you can't allocate, or if you precisely know the bounds of your numbers.
The type Uint<S> represents an unsigned integer with S digits of the base 2³².
It is represented as [u32; S] internally.
The type Rational<S>represents a rational number, represented as (+-) Uint<S> / Uint<S>.
- implement
Decimal, representing numbers asa * b^cwherebis either 2 or 10 (?) - make it fast