Skip to content

Commit 6c00f9c

Browse files
committed
remove TreeMap, TreeSet, TrieMap, TrieSet, LruCache. deprecate EnumSet's std re-export
1 parent f9a4849 commit 6c00f9c

File tree

9 files changed

+13
-6682
lines changed

9 files changed

+13
-6682
lines changed

src/libcollections/lib.rs

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,6 @@ pub use dlist::DList;
4646
pub use enum_set::EnumSet;
4747
pub use ring_buf::RingBuf;
4848
pub use string::String;
49-
pub use tree_map::TreeMap;
50-
pub use tree_set::TreeSet;
51-
pub use trie_map::TrieMap;
52-
pub use trie_set::TrieSet;
5349
pub use vec::Vec;
5450
pub use vec_map::VecMap;
5551

@@ -61,8 +57,6 @@ mod btree;
6157
pub mod dlist;
6258
pub mod enum_set;
6359
pub mod ring_buf;
64-
mod tree;
65-
mod trie;
6660
pub mod slice;
6761
pub mod str;
6862
pub mod string;
@@ -77,22 +71,6 @@ pub mod bitv_set {
7771
pub use bit::{BitvSet, BitPositions, TwoBitPositions};
7872
}
7973

80-
pub mod tree_map {
81-
pub use tree::map::*;
82-
}
83-
84-
pub mod tree_set {
85-
pub use tree::set::*;
86-
}
87-
88-
pub mod trie_map {
89-
pub use trie::map::*;
90-
}
91-
92-
pub mod trie_set {
93-
pub use trie::set::*;
94-
}
95-
9674
pub mod btree_map {
9775
pub use btree::map::*;
9876
}

0 commit comments

Comments
 (0)