romanice 2.0.0-nullsafety.0 copy "romanice: ^2.0.0-nullsafety.0" to clipboard
romanice: ^2.0.0-nullsafety.0 copied to clipboard

outdated

A Dart library for converting to/from Roman numerals, e.g., 3888 ↔ MMMDCCCLXXXVIII

romanice - Convert to/from Roman numerals #

Version Build Status Coverage Status License

A Dart library for converting to/from Roman numerals, e.g., 3888MMMDCCCLXXXVIII, 38888ↂↂↂↁↀↀↀⅮⅭⅭⅭⅬⅩⅩⅩⅤⅠⅠⅠ

Usage #

See example/main.dart

Standard - I, V, X, L, C, D, M #

final ToRoman standardToRoman = ToRoman();

final String roman = standardToRoman(3888);
// roman == 'MMMDCCCLXXXVIII'

final int decimal = standardToRoman.inverse()('MMMCMXCIX');
// decimal == 3999

Unicode - , , , , , , , , #

final FromRoman unicodeFromRoman = FromRoman.unicode();

final String roman = unicodeFromRoman.inverse()(38888);
// roman == 'ↂↂↂↁↀↀↀⅮⅭⅭⅭⅬⅩⅩⅩⅤⅠⅠⅠ'

final int decimal = unicodeFromRoman('ↂↂↂↀↂⅭↀⅩⅭⅠⅩ');
// decimal == 39999

Syntax #

ToRoman([List<String> _symbols]) #

FromRoman([List<String> _symbols]) #

_symbols - List of Roman numeral symbols representing the character set. If omitted, assumes the standard symbols ['I', 'V', 'X', 'L', 'C', 'D', 'M'].

See documentation for more

License #

MIT

4
likes
0
pub points
55%
popularity

Publisher

verified publisherdart.dkinom.dev

A Dart library for converting to/from Roman numerals, e.g., 3888 ↔ MMMDCCCLXXXVIII

Homepage
Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

invertible

More

Packages that depend on romanice