]> git.lizzy.rs Git - rust.git/blob - src/libstd/collections/mod.rs
ccef1c0fd2adb80331da2b646ff06de772ffba05
[rust.git] / src / libstd / collections / mod.rs
1 // Copyright 2013-2014 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 /*!
12  * Collection types.
13  */
14
15 #![experimental]
16
17 pub use core_collections::{Collection, Mutable, Map, MutableMap};
18 pub use core_collections::{Set, MutableSet, Deque};
19 pub use core_collections::{Bitv, BitvSet, BTree, DList, EnumSet};
20 pub use core_collections::{PriorityQueue, RingBuf, SmallIntMap};
21 pub use core_collections::{TreeMap, TreeSet, TrieMap, TrieSet};
22 pub use core_collections::{bitv, btree, dlist, enum_set};
23 pub use core_collections::{priority_queue, ringbuf, smallintmap, treemap, trie};
24
25 pub use self::hashmap::{HashMap, HashSet};
26 pub use self::lru_cache::LruCache;
27
28 pub mod hashmap;
29 pub mod lru_cache;