std_macro_extensions/
lib.rs1pub(crate) mod r#arc;
2pub(crate) mod b_tree_map;
3pub(crate) mod b_tree_set;
4pub(crate) mod binary_heap;
5pub(crate) mod boxed;
6pub(crate) mod r#cell;
7pub(crate) mod cin;
8pub(crate) mod cout;
9pub(crate) mod execute;
10pub(crate) mod hash_map;
11pub(crate) mod hash_set;
12pub(crate) mod linked_list;
13pub(crate) mod mutex;
14pub(crate) mod path;
15pub(crate) mod r#rc;
16pub(crate) mod ref_cell;
17pub(crate) mod rw_lock;
18pub(crate) mod string;
19pub(crate) mod vector;
20pub(crate) mod vector_deque;
21
22#[cfg(test)]
23pub(crate) use std::{
24 boxed::Box,
25 cell::{Cell, RefCell},
26 collections::{BTreeMap, BTreeSet, BinaryHeap, HashMap, HashSet, LinkedList, VecDeque},
27 path::PathBuf,
28 rc::Rc,
29 sync::Arc,
30 sync::{Mutex, MutexGuard, RwLock},
31};