This crate provides a type Ordinal<T>
that formats an
Integer
type T
as an
ordinal number
(1st, 2nd, 3rd etc).
Ordinal is available on crates.io. Use the
following in Cargo.toml
:
toml
[dependencies]
ordinal = "0.1"
```rust extern crate ordinal; use ordinal::Ordinal;
fn main() { assert_eq!("2nd", format!("{}", Ordinal::from(2))); } ```
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in Ordinal by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.