#ordinal #numbers #formatting

ordnl

用于格式化序数数字的 Rust 库

4 个稳定版本

1.0.3 2020年2月23日

#7#ordinal

MIT 许可协议

6KB

ordnl

用于格式化序数数字的 Rust 库。

Crate Docs

使用方法

将以下内容添加到您的 Cargo.toml 文件中

[dependencies]
ordnl = "1.0.3"

示例

use ordnl;

fn main() {
    println!("{}", ordnl::of_u8(0u8)); // "0th"
    println!("{}", ordnl::of_u8(1u8)); // "1st"
    println!("{}", ordnl::of_u8(2u8)); // "2nd"
    println!("{}", ordnl::of_u8(3u8)); // "3rd"
    println!("{}", ordnl::of_u8(4u8)); // "4th"

    println!("{}", ordnl::of_u8(0u8)); // "0th"
    println!("{}", ordnl::of_u16(1u16)); // "1st"
    println!("{}", ordnl::of_u32(2u32)); // "2nd"
    println!("{}", ordnl::of_u64(3u64)); // "3rd"
    println!("{}", ordnl::of_u128(4u128)); // "4th"
}

lib.rs:

用于格式化序数数字的 Rust 库。

示例


fn main() {
    println!("{}", ordnl::of_u8(0u8)); // "0th"
    println!("{}", ordnl::of_u8(1u8)); // "1st"
    println!("{}", ordnl::of_u8(2u8)); // "2nd"
    println!("{}", ordnl::of_u8(3u8)); // "3rd"
    println!("{}", ordnl::of_u8(4u8)); // "4th"

    println!("{}", ordnl::of_u8(0u8)); // "0th"
    println!("{}", ordnl::of_u16(1u16)); // "1st"
    println!("{}", ordnl::of_u32(2u32)); // "2nd"
    println!("{}", ordnl::of_u64(3u64)); // "3rd"
    println!("{}", ordnl::of_u128(4u128)); // "4th"
}

无运行时依赖