2015-03-11 04:58:16 +00:00
|
|
|
// Copyright 2015 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2016-01-31 00:19:37 +00:00
|
|
|
#![deny(warnings)]
|
|
|
|
|
2017-06-13 22:52:59 +00:00
|
|
|
#![feature(alloc)]
|
2017-06-01 03:24:19 +00:00
|
|
|
#![feature(attr_literals)]
|
2015-03-11 04:58:16 +00:00
|
|
|
#![feature(box_syntax)]
|
2017-02-18 18:57:18 +00:00
|
|
|
#![feature(inclusive_range_syntax)]
|
2016-12-22 17:15:13 +00:00
|
|
|
#![feature(collection_placement)]
|
2015-05-29 13:42:32 +00:00
|
|
|
#![feature(const_fn)]
|
2016-11-22 22:31:31 +00:00
|
|
|
#![feature(exact_size_is_empty)]
|
2017-05-30 15:40:50 +00:00
|
|
|
#![feature(iterator_step_by)]
|
2015-06-10 20:33:52 +00:00
|
|
|
#![feature(pattern)]
|
2016-12-22 17:15:13 +00:00
|
|
|
#![feature(placement_in_syntax)]
|
2015-03-11 04:58:16 +00:00
|
|
|
#![feature(rand)]
|
2017-06-01 03:24:19 +00:00
|
|
|
#![feature(repr_align)]
|
2017-05-01 06:50:59 +00:00
|
|
|
#![feature(slice_rotate)]
|
2017-04-08 20:55:53 +00:00
|
|
|
#![feature(splice)]
|
2017-06-04 18:08:25 +00:00
|
|
|
#![feature(str_checked_slicing)]
|
2015-06-10 20:33:52 +00:00
|
|
|
#![feature(str_escape)]
|
2015-03-11 04:58:16 +00:00
|
|
|
#![feature(test)]
|
|
|
|
#![feature(unboxed_closures)]
|
|
|
|
#![feature(unicode)]
|
2017-03-06 21:06:30 +00:00
|
|
|
#![feature(utf8_error_error_len)]
|
2015-07-11 11:34:57 +00:00
|
|
|
|
2017-06-13 22:52:59 +00:00
|
|
|
extern crate alloc;
|
2015-03-11 04:58:16 +00:00
|
|
|
extern crate test;
|
2016-11-29 19:38:08 +00:00
|
|
|
extern crate std_unicode;
|
2017-03-09 07:50:48 +00:00
|
|
|
extern crate core;
|
2015-03-11 04:58:16 +00:00
|
|
|
|
2016-09-29 00:23:36 +00:00
|
|
|
use std::hash::{Hash, Hasher};
|
|
|
|
use std::collections::hash_map::DefaultHasher;
|
2015-08-12 00:27:05 +00:00
|
|
|
|
2015-03-11 04:58:16 +00:00
|
|
|
mod binary_heap;
|
|
|
|
mod btree;
|
2016-11-04 01:07:00 +00:00
|
|
|
mod cow_str;
|
2015-03-11 04:58:16 +00:00
|
|
|
mod fmt;
|
|
|
|
mod linked_list;
|
|
|
|
mod slice;
|
|
|
|
mod str;
|
|
|
|
mod string;
|
|
|
|
mod vec_deque;
|
|
|
|
mod vec;
|
2015-08-12 00:27:05 +00:00
|
|
|
|
|
|
|
fn hash<T: Hash>(t: &T) -> u64 {
|
2016-09-29 00:23:36 +00:00
|
|
|
let mut s = DefaultHasher::new();
|
2015-08-12 00:27:05 +00:00
|
|
|
t.hash(&mut s);
|
|
|
|
s.finish()
|
|
|
|
}
|