romans 0.1.0

Utility to convert and represent Roman numerals.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Standard prelude.
//!
//! Use it as:
//! ```
//! use romans::prelude::*;
//! ```

// re-export of error
pub use crate::error::Error;

/// standard error type
pub type Result<T> = core::result::Result<T, Error>;

/// generic wrapper tuple struct for `newtype` pattern
#[derive(Debug)]
pub(super) struct W<T>(pub T);

pub use crate::romans::*;