prism3-core 0.2.0

Foundational utilities and language-level tools for Rust application development
Documentation
/*******************************************************************************
 *
 *    Copyright (c) 2025.
 *    3-Prism Co. Ltd.
 *
 *    All rights reserved.
 *
 ******************************************************************************/
//! # Tuple Module
//!
//! Provides generic tuple-like structures with named fields.
//!
//! # Author
//!
//! Haixing Hu

pub mod pair;
pub mod triple;

pub use pair::Pair;
pub use triple::Triple;