std-macro-extensions 1.0.1

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.
Documentation
//! std-macro-extensions
//!
//! 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.

mod r#arc;
mod b_tree_map;
mod b_tree_set;
mod binary_heap;
mod boxed;
mod r#cell;
mod cin;
mod cout;
mod execute;
mod hash_map;
mod hash_set;
mod linked_list;
mod mutex;
mod path;
mod r#rc;
mod ref_cell;
mod rw_lock;
mod string;
mod vector;
mod vector_deque;

#[cfg(test)]
use std::{
    boxed::Box,
    cell::{Cell, RefCell},
    collections::{BTreeMap, BTreeSet, BinaryHeap, HashMap, HashSet, LinkedList, VecDeque},
    path::PathBuf,
    rc::Rc,
    sync::Arc,
    sync::{Mutex, MutexGuard, RwLock},
};