14 releases

0.6.0 Nov 23, 2024
0.5.6 May 28, 2024
0.5.5 Nov 16, 2023
0.5.3 Apr 13, 2023
0.1.0 Oct 15, 2020

#417 in Internationalization (i18n)

Download history 60444/week @ 2024-09-22 60428/week @ 2024-09-29 60138/week @ 2024-10-06 36291/week @ 2024-10-13 33380/week @ 2024-10-20 27097/week @ 2024-10-27 37010/week @ 2024-11-03 36047/week @ 2024-11-10 33416/week @ 2024-11-17 19241/week @ 2024-11-24 28974/week @ 2024-12-01 28778/week @ 2024-12-08 29091/week @ 2024-12-15 7918/week @ 2024-12-22 10608/week @ 2024-12-29 27934/week @ 2025-01-05

76,559 downloads per month
Used in 69 crates (17 directly)

Unicode-3.0

285KB
5K SLoC

fixed_decimal crates.io

fixed_decimal is a utility crate of the ICU4X project.

It includes FixedDecimal, a core API for representing numbers in a human-readable form appropriate for formatting and plural rule selection. It is optimized for operations involving the individual digits of a number.

Examples

use fixed_decimal::FixedDecimal;

let dec = FixedDecimal::from(250).multiplied_pow10(-2);
assert_eq!("2.50", format!("{}", dec));

#[derive(Debug, PartialEq)]
struct MagnitudeAndDigit(i16, u8);

let digits: Vec<MagnitudeAndDigit> = dec
    .magnitude_range()
    .map(|m| MagnitudeAndDigit(m, dec.digit_at(m)))
    .collect();

assert_eq!(
    vec![
        MagnitudeAndDigit(-2, 0),
        MagnitudeAndDigit(-1, 5),
        MagnitudeAndDigit(0, 2)
    ],
    digits
);

More Information

For more information on development, authorship, contributing etc. please visit ICU4X home page.

Dependencies

~265–750KB
~18K SLoC