qubit-argument 0.3.1

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 argument_error_tests;
    pub(crate) mod collection_argument_tests;
    pub(crate) mod condition_tests;
    pub(crate) mod numeric_argument_tests;
    pub(crate) mod option_argument_tests;
    pub(crate) mod string_argument_tests;
}