]> git.lizzy.rs Git - rust.git/blob - src/libcollectionstest/lib.rs
doc: make String::as_bytes example more simple
[rust.git] / src / libcollectionstest / lib.rs
1 // Copyright 2015 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 #![feature(bit_set_append_split_off)]
12 #![feature(bit_vec_append_split_off)]
13 #![feature(box_syntax)]
14 #![feature(collections)]
15 #![feature(collections_drain)]
16 #![feature(core)]
17 #![feature(const_fn)]
18 #![feature(hash)]
19 #![feature(rand)]
20 #![feature(rustc_private)]
21 #![feature(test)]
22 #![feature(unboxed_closures)]
23 #![feature(unicode)]
24 #![feature(into_cow)]
25 #![feature(step_by)]
26 #![cfg_attr(test, feature(str_char))]
27 #![cfg_attr(test, feature(vec_deque_retain))]
28
29 #[macro_use] extern crate log;
30
31 extern crate collections;
32 extern crate test;
33 extern crate rustc_unicode;
34
35 #[cfg(test)] #[macro_use] mod bench;
36
37 mod binary_heap;
38 mod bit;
39 mod btree;
40 mod enum_set;
41 mod fmt;
42 mod linked_list;
43 mod slice;
44 mod str;
45 mod string;
46 mod vec_deque;
47 mod vec_map;
48 mod vec;