std_macro_extensions/
lib.rs#![allow(warnings)]
mod r#arc;
mod b_tree_map;
mod b_tree_set;
mod binary_heap;
mod boxed;
mod r#cell;
mod hash_map;
mod hash_set;
mod linked_list;
mod mutex;
mod r#rc;
mod ref_cell;
mod rw_lock;
mod string;
mod vector;
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 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},
    rc::Rc,
    string::String,
    sync::{Arc, Mutex, MutexGuard, RwLock},
    vec::Vec,
};