qubit-argument 0.2.0

Argument and state validation helpers for Rust applications
Documentation
/*******************************************************************************
 *
 *    Copyright (c) 2025 - 2026 Haixing Hu.
 *
 *    SPDX-License-Identifier: Apache-2.0
 *
 *    Licensed under the Apache License, Version 2.0.
 *
 ******************************************************************************/
//! # Argument Module Test Entry
//!
//! Tests for argument validation utilities.

mod argument {
    pub(crate) mod collection_tests;
    pub(crate) mod condition_tests;
    pub(crate) mod error_tests;
    pub(crate) mod numeric_tests;
    pub(crate) mod option_tests;
    pub(crate) mod string_tests;
}