arithmos 0.1.0

A library for converting Arabic numerals into Greek numerals
Documentation
  • Coverage
  • 100%
    9 out of 9 items documented0 out of 6 items with examples
  • Size
  • Source code size: 50.74 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.03 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 7s Average build duration of successful builds.
  • all releases: 8s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • Repository
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • vincentjorgensen

========= arithmos

.. image:: https://img.shields.io/badge/License-GPL%203.0-green.svg :target: https://www.gnu.org/licenses/gpl-3.0.en.html :alt: License: GPL-3.0

Rust library for converting Arabic numerals (1,2,3...) to Ancient Greek numerals (α', β', γ' ...)

Example usage

.. code-block:: rust

use arithmos::GreekNumeral;

fn main() { let num = GreekNumeral::new(616); println!("{}", num); // ΧΙϜ' assert_eq!("ΧΙϜ'".parse().unwrap(), num); }

License

GPL-3.0__

__ ./LICENSE

Contribution

Any contribution intentionally submitted for inclusion in this project shall be licensed as above without additional terms or conditions.