cash 0.3.4

An immutable library to create, calculate, format and exchange currency.
Documentation
use std::collections::HashMap;

mod structs;
mod traits;
mod helpers;

pub use structs::cash::Cash;
pub use structs::logmap::LogMap;

pub use traits::{
	create::Create,
	calculate::Calculate,
	format::Format,
	exchange::Exchange,
};

pub use helpers::amount::sanitize_negative;

// TODO write API documentation