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 `RefCell` instance.
////// This macro takes a value and wraps it in a `RefCell`, providing interior mutability with dynamic borrow checking.
/// `RefCell` allows mutable access to its contents even when it is shared among multiple references.
#[macro_export]macro_rules!refcell{($val:expr)=>{std::cell::RefCell::new($val)};}