clonelicious 2.2.18

A Rust macro library that simplifies cloning and closure execution. The `clone!` macro automatically clones variables and immediately executes the closure with the cloned values, streamlining common patterns in Rust programming.
Documentation
1
2
3
4
5
6
7
8
9
//! clonelicious
//!
//! A Rust macro library that simplifies cloning and closure execution.
//! The `clone!` macro automatically clones variables and immediately executes
//! the closure with the cloned values, streamlining common patterns in Rust programming.

mod r#macro;
#[cfg(test)]
mod test;