A collection of macro extensions for Rust's standard library data structures, simplifying the creation and manipulation of common collections such as HashMap, Vec, and more.
/// Creates a new `Mutex` instance.
////// This macro takes a value and wraps it in a `Mutex`, providing thread-safe interior mutability.
/// The `Mutex` type ensures mutual exclusion, allowing only one thread to access the value at a time.
#[macro_export]macro_rules!mutex{($val:expr)=>{std::sync::Mutex::new($val)};}