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 option;
mod r#rc;
mod ref_cell;
mod r#result;
mod rw_lock;
mod string;
mod r#vec;
mod vec_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 option::r#macro::*;
pub use r#arc::r#macro::*;
pub use rc::r#macro::*;
pub use ref_cell::r#macro::*;
pub use result::r#macro::*;
pub use rw_lock::r#macro::*;
pub use string::r#macro::*;
pub use vec::r#macro::*;
pub use vec_deque::r#macro::*;
pub use std::{
boxed::Box,
cell::Cell,
collections::{BTreeMap, BTreeSet, BinaryHeap, HashMap, HashSet, LinkedList},
sync::{Arc, Mutex},
};