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.
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.
13 #![feature(binary_heap_extras)]
14 #![feature(box_syntax)]
15 #![feature(btree_range)]
16 #![feature(collections)]
17 #![feature(collections_bound)]
19 #![feature(fn_traits)]
21 #![feature(iter_arith)]
22 #![feature(map_entry_keys)]
23 #![feature(map_values_mut)]
28 #![feature(str_escape)]
30 #![feature(unboxed_closures)]
33 extern crate collections
;
35 extern crate rustc_unicode
;
37 use std
::hash
::{Hash, Hasher, SipHasher}
;
39 #[cfg(test)] #[macro_use] mod bench;
52 fn hash
<T
: Hash
>(t
: &T
) -> u64 {
53 let mut s
= SipHasher
::new();