fixed_decimal 0.7.2

An API for representing numbers in a human-readable form
Documentation
// This file is part of ICU4X. For terms of use, please see the file
// called LICENSE at the top level of the ICU4X source tree
// (online at: https://github.com/unicode-org/icu4x/blob/main/LICENSE ).

// In computers, monetary values are sometimes stored as integers representing one ten-thousandth
// (one permyriad) of a monetary unit. FixedDecimal enables a cheap representation of these
// amounts, also while retaining trailing zeros.

#![no_main] // https://github.com/unicode-org/icu4x/issues/395
icu_benchmark_macros::instrument!();

use fixed_decimal::Decimal;
use writeable::Writeable;

fn main() {
    let monetary_int = 19_9500;
    let fixed_decimal = {
        let mut fixed_decimal = Decimal::from(monetary_int);
        fixed_decimal.multiply_pow10(-4);
        fixed_decimal
    };

    assert_eq!(fixed_decimal.write_to_string(), "19.9500");
}