std_macro_extensions/
lib.rs#![allow(warnings)]
pub(crate) mod r#arc;
pub(crate) mod b_tree_map;
pub(crate) mod b_tree_set;
pub(crate) mod binary_heap;
pub(crate) mod boxed;
pub(crate) mod r#cell;
pub(crate) mod hash_map;
pub(crate) mod hash_set;
pub(crate) mod linked_list;
pub(crate) mod mutex;
pub(crate) mod path;
pub(crate) mod r#rc;
pub(crate) mod ref_cell;
pub(crate) mod rw_lock;
pub(crate) mod string;
pub(crate) mod vector;
pub(crate) mod vector_deque;
pub use b_tree_map::r#macro::*;
pub use b_tree_set::r#macro::*;
pub use binary_heap::r#macro::*;
pub use boxed::r#macro::*;
pub use cell::r#macro::*;
pub use hash_map::r#macro::*;
pub use hash_set::r#macro::*;
pub use linked_list::r#macro::*;
pub use mutex::r#macro::*;
pub use path::r#macro::*;
pub use r#arc::r#macro::*;
pub use rc::r#macro::*;
pub use ref_cell::r#macro::*;
pub use rw_lock::r#macro::*;
pub use string::r#macro::*;
pub use vector::r#macro::*;
pub use vector_deque::r#macro::*;
pub 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},
};