RustQuant_iso 0.4.0

A Rust library for quantitative finance.
Documentation
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// RustQuant: A Rust library for quantitative finance tools.
// Copyright (C) 2023 https://github.com/avhz
// Dual licensed under Apache 2.0 and MIT.
// See:
//      - LICENSE-APACHE.md
//      - LICENSE-MIT.md
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

//! ISO codes module.

/// ISIN (International Securities Identification Number) module.
pub mod isin;
pub use isin::*;

/// ISO 10383 market identifier codes module.
pub mod iso_10383;
pub use iso_10383::*;

/// ISO 3166 country codes module.
pub mod iso_3166;
pub use iso_3166::*;

/// ISO 4217 currency codes module.
pub mod iso_4217;
pub use iso_4217::*;