]> git.proxmox.com Git - rustc.git/blame - src/libcollectionstest/lib.rs
Imported Upstream version 1.9.0+dfsg1
[rustc.git] / src / libcollectionstest / lib.rs
CommitLineData
c34b1796
AL
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
7453a54e
SL
11#![deny(warnings)]
12
e9174d1e 13#![feature(binary_heap_extras)]
c34b1796 14#![feature(box_syntax)]
62682a34 15#![feature(btree_range)]
c34b1796 16#![feature(collections)]
62682a34
SL
17#![feature(collections_bound)]
18#![feature(const_fn)]
92a42be0 19#![feature(fn_traits)]
62682a34 20#![feature(enumset)]
62682a34 21#![feature(iter_arith)]
54a0048b
SL
22#![feature(map_entry_keys)]
23#![feature(map_values_mut)]
62682a34 24#![feature(pattern)]
c34b1796 25#![feature(rand)]
62682a34
SL
26#![feature(step_by)]
27#![feature(str_char)]
28#![feature(str_escape)]
c34b1796
AL
29#![feature(test)]
30#![feature(unboxed_closures)]
31#![feature(unicode)]
c1a9b12d 32
c34b1796
AL
33extern crate collections;
34extern crate test;
d9579d0f 35extern crate rustc_unicode;
c34b1796 36
e9174d1e
SL
37use std::hash::{Hash, Hasher, SipHasher};
38
c34b1796
AL
39#[cfg(test)] #[macro_use] mod bench;
40
41mod binary_heap;
c34b1796
AL
42mod btree;
43mod enum_set;
44mod fmt;
45mod linked_list;
46mod slice;
47mod str;
48mod string;
49mod vec_deque;
c34b1796 50mod vec;
e9174d1e
SL
51
52fn hash<T: Hash>(t: &T) -> u64 {
53 let mut s = SipHasher::new();
54 t.hash(&mut s);
55 s.finish()
56}