(index<- ) ./libcollections/lib.rs
git branch: * master 5200215 auto merge of #14035 : alexcrichton/rust/experimental, r=huonw
modified: Sat Apr 19 11:22:39 2014
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 #![crate_id = "collections#0.11-pre"]
16 #![crate_type = "rlib"]
17 #![crate_type = "dylib"]
18 #![license = "MIT/ASL2"]
19 #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
20 html_favicon_url = "http://www.rust-lang.org/favicon.ico",
21 html_root_url = "http://static.rust-lang.org/doc/master")]
22
23 #![feature(macro_rules, managed_boxes, default_type_params, phase)]
24
25 #![deny(deprecated_owned_vector)]
26
27 extern crate rand;
28
29 #[cfg(test)] extern crate test;
30 #[cfg(test)] #[phase(syntax, link)] extern crate log;
31
32 pub use bitv::Bitv;
33 pub use btree::BTree;
34 pub use deque::Deque;
35 pub use dlist::DList;
36 pub use enum_set::EnumSet;
37 pub use hashmap::{HashMap, HashSet};
38 pub use lru_cache::LruCache;
39 pub use priority_queue::PriorityQueue;
40 pub use ringbuf::RingBuf;
41 pub use smallintmap::SmallIntMap;
42 pub use treemap::{TreeMap, TreeSet};
43 pub use trie::{TrieMap, TrieSet};
44
45 pub mod bitv;
46 pub mod btree;
47 pub mod deque;
48 pub mod dlist;
49 pub mod enum_set;
50 pub mod hashmap;
51 pub mod lru_cache;
52 pub mod priority_queue;
53 pub mod ringbuf;
54 pub mod smallintmap;
55 pub mod treemap;
56 pub mod trie;