qubit-function 0.16.0

Functional programming traits and Box/Rc/Arc adapters for Rust, inspired by Java functional interfaces
// =============================================================================
//    Copyright (c) 2025 - 2026 Haixing Hu.
//
//    SPDX-License-Identifier: Apache-2.0
//
//    Licensed under the Apache License, Version 2.0.
// =============================================================================

//! # Supplier Clone Macro
//!
//! Generates Clone trait implementation for basic Supplier types
//!
//! Generates Clone implementation for Supplier structs that have `function`
//! and `name` fields. The function field is cloned using its inherent `clone`
//! method, which performs a shallow clone for smart pointers like `Arc` or
//! `Rc`.
//!
//! # Parameters
//!
//! * `$struct_name` - The struct name
//! * `$generic` - Generic parameter list (one type parameter)
//!
//! # Examples
//!
//! The example requires the `rc` and `stateful` features.
//!
//! ```rust
//! # #[cfg(all(feature = "rc", feature = "stateful"))]
//! # {
//! use qubit_function::{ArcStatefulSupplier, ArcSupplier, RcStatefulSupplier, RcSupplier, Supplier};
//!
//! let arc = ArcSupplier::new(|| 1);
//! let arc_clone = arc.clone();
//! assert_eq!(arc_clone.get(), 1);
//!
//! let rc = RcSupplier::new(|| "ok".to_string());
//! let rc_clone = rc.clone();
//! assert_eq!(rc_clone.get(), "ok".to_string());
//!
//! let stateful_arc = ArcStatefulSupplier::new(|| 1);
//! let _stateful_arc_clone = stateful_arc.clone();
//!
//! let stateful_rc = RcStatefulSupplier::new(|| 1);
//! let _stateful_rc_clone = stateful_rc.clone();
//! # }
//! ```

/// Generates Clone trait implementation for basic Supplier types
///
/// This macro should be used at the top level (outside of any impl block) as
/// it generates a complete `impl Clone for $struct_name` block. It generates
/// Clone implementation for Supplier structs that have `function` and `name`
/// fields. The function field is cloned using its inherent `clone` method,
/// which performs a shallow clone for smart pointers like `Arc` or `Rc`.
///
/// # Parameters
///
/// * `$struct_name` - The struct name
/// * `$t` - Generic parameter list (one type parameter)
///
/// # Examples
///
/// The example requires the `rc` and `stateful` features.
///
/// ```rust
/// # #[cfg(all(feature = "rc", feature = "stateful"))]
/// # {
/// use qubit_function::{ArcStatefulSupplier, ArcSupplier, RcStatefulSupplier, RcSupplier, Supplier};
///
/// let arc = ArcSupplier::new(|| 1);
/// let arc_clone = arc.clone();
/// assert_eq!(arc_clone.get(), 1);
///
/// let rc = RcSupplier::new(|| "ok".to_string());
/// let rc_clone = rc.clone();
/// assert_eq!(rc_clone.get(), "ok".to_string());
///
/// let stateful_arc = ArcStatefulSupplier::new(|| 1);
/// let _stateful_arc_clone = stateful_arc.clone();
///
/// let stateful_rc = RcStatefulSupplier::new(|| 1);
/// let _stateful_rc_clone = stateful_rc.clone();
/// # }
/// ```
macro_rules! impl_supplier_clone {
    // Single generic parameter
    ($struct_name:ident < $t:ident >) => {
        impl<$t> Clone for $struct_name<$t> {
            fn clone(&self) -> Self {
                Self {
                    function: self.function.clone(),
                    metadata: self.metadata.clone(),
                }
            }
        }
    };
}

pub(crate) use impl_supplier_clone;