]> git.lizzy.rs Git - rust.git/blob - src/libcollectionstest/lib.rs
Rollup merge of #35621 - frewsxcv:cstring-from-vec-doc, r=peschkaj
[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 #![deny(warnings)]
12
13 #![feature(binary_heap_extras)]
14 #![feature(binary_heap_peek_mut)]
15 #![feature(box_syntax)]
16 #![feature(btree_range)]
17 #![feature(collections)]
18 #![feature(collections_bound)]
19 #![feature(const_fn)]
20 #![feature(fn_traits)]
21 #![feature(enumset)]
22 #![feature(linked_list_contains)]
23 #![feature(pattern)]
24 #![feature(rand)]
25 #![feature(step_by)]
26 #![feature(str_escape)]
27 #![feature(test)]
28 #![feature(unboxed_closures)]
29 #![feature(unicode)]
30 #![feature(vec_deque_contains)]
31 #![feature(vec_into_iter_as_slice)]
32
33 extern crate collections;
34 extern crate test;
35 extern crate rustc_unicode;
36
37 use std::hash::{Hash, Hasher, SipHasher};
38
39 #[cfg(test)] #[macro_use] mod bench;
40
41 mod binary_heap;
42 mod btree;
43 mod enum_set;
44 mod fmt;
45 mod linked_list;
46 mod slice;
47 mod str;
48 mod string;
49 mod vec_deque;
50 mod vec;
51
52 fn hash<T: Hash>(t: &T) -> u64 {
53     let mut s = SipHasher::new();
54     t.hash(&mut s);
55     s.finish()
56 }