Crates.io | roman-numerals-rs |
lib.rs | roman-numerals-rs |
version | 1.0.0 |
source | src |
created_at | 2024-11-10 00:57:02.752105 |
updated_at | 2024-11-10 00:57:02.752105 |
description | Manipulate well-formed Roman numerals |
homepage | |
repository | https://github.com/AA-Turner/roman-numerals/ |
max_upload_size | |
id | 1442464 |
size | 25,235 |
A library for manipulating well-formed Roman numerals.
Integers between 1 and 3,999 (inclusive) are supported.
Numbers beyond this range will return an OutOfRangeError
.
The classical system of roman numerals requires that the same character may not appear more than thrice consecutively, meaning that 'MMMCMXCIX' (3,999) is the largest well-formed Roman numeral. The smallest is 'I' (1), as there is no symbol for zero in Roman numerals.
Both upper- and lower-case formatting of roman numerals are supported,
and likewise for parsing strings,
although the entire string must be of the same case.
Numerals that do not adhere to the classical form are rejected
with an InvalidRomanNumeralError
.
use roman_numerals_rs::RomanNumeral;
let num = RomanNumeral::new(16)?;
assert_eq!(num.to_string(), "XVI");
let num: RomanNumeral = "XVI".parse()?;
assert_eq!(num.as_u16(), 16);
let num: RomanNumeral = 3_999.try_into().unwrap();
println!("{}", num); // MMMCMXCIX
use roman_numerals_rs::RomanNumeral;
let num = RomanNumeral::new(16)?;
assert_eq!(num.to_string(), "XVI");
assert_eq!(num.to_uppercase(), "XVI");
assert_eq!(num.to_lowercase(), "xvi");
assert_eq!(format!("{:X}", num), "XVI");
assert_eq!(format!("{:x}", num), "xvi");
use roman_numerals_rs::RomanNumeral;
let num = RomanNumeral::new(42)?;
assert_eq!(num.as_u16(), 42);
use core::str::FromStr;
use roman_numerals_rs::{RomanNumeral, InvalidRomanNumeralError, OutOfRangeError};
let res = RomanNumeral::from_str("Spam!");
assert!(matches!(res.unwrap_err(), InvalidRomanNumeralError));
let res = "CLL".parse::<RomanNumeral>();
assert!(matches!(res.unwrap_err(), InvalidRomanNumeralError));
let res = RomanNumeral::new(0);
assert!(matches!(res.unwrap_err(), OutOfRangeError));
let res = RomanNumeral::new(4_000);
assert!(matches!(res.unwrap_err(), OutOfRangeError));
This project is placed in the public domain or under the terms of the 'Zero Clause BSD licence', whichever is more permissive.