qubit-common 0.6.2

Foundational utilities and language-level tools for Rust application development
Documentation
/*******************************************************************************
 *
 *    Copyright (c) 2025 - 2026.
 *    Haixing Hu, Qubit 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;