Function big_uint_to_ufixed

Source
pub(crate) fn big_uint_to_ufixed(
    uint: &BigUint,
    lg_scaling_factor: i64,
) -> String
Expand description

Convert a BigUint to a string interpreted as unsigned fixed point value.

The output is equivalent to uint / (2 ** lg_scaling_factor) (without integer truncation through division)