std_macro_extensions/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#![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 std::{
    any::*, array::*, ascii::*, borrow::*, boxed::*, cell::*, char::*, cmp::*, collections::*,
    convert::*, iter::*, mem::*, net::*, num::*, ops::*, option::*, os::*, panic::*, path::*,
    pin::*, ptr::*, rc::*, result::*, slice::*, str::*, string::*, sync::*, vec::*,
};
pub use string::r#macro::*;
pub use vector::r#macro::*;
pub use vector_deque::r#macro::*;