std_macro_extensions/
lib.rs

1//! std-macro-extensions
2//!
3//! A collection of macro extensions for Rust's standard library
4//! data structures, simplifying the creation and manipulation of
5//! common collections such as HashMap, Vec, and more.
6
7pub(crate) mod r#arc;
8pub(crate) mod b_tree_map;
9pub(crate) mod b_tree_set;
10pub(crate) mod binary_heap;
11pub(crate) mod boxed;
12pub(crate) mod r#cell;
13pub(crate) mod cin;
14pub(crate) mod cout;
15pub(crate) mod execute;
16pub(crate) mod hash_map;
17pub(crate) mod hash_set;
18pub(crate) mod linked_list;
19pub(crate) mod mutex;
20pub(crate) mod path;
21pub(crate) mod r#rc;
22pub(crate) mod ref_cell;
23pub(crate) mod rw_lock;
24pub(crate) mod string;
25pub(crate) mod vector;
26pub(crate) mod vector_deque;
27
28#[cfg(test)]
29pub(crate) use std::{
30    boxed::Box,
31    cell::{Cell, RefCell},
32    collections::{BTreeMap, BTreeSet, BinaryHeap, HashMap, HashSet, LinkedList, VecDeque},
33    path::PathBuf,
34    rc::Rc,
35    sync::Arc,
36    sync::{Mutex, MutexGuard, RwLock},
37};