2015-03-10 23:58:16 -05: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-30 18:19:37 -06:00
|
|
|
#![deny(warnings)]
|
|
|
|
|
2017-06-13 17:52:59 -05:00
|
|
|
#![feature(alloc)]
|
2017-05-31 22:24:19 -05:00
|
|
|
#![feature(attr_literals)]
|
2015-03-10 23:58:16 -05:00
|
|
|
#![feature(box_syntax)]
|
2017-02-18 12:57:18 -06:00
|
|
|
#![feature(inclusive_range_syntax)]
|
2016-12-22 11:15:13 -06:00
|
|
|
#![feature(collection_placement)]
|
2015-05-29 08:42:32 -05:00
|
|
|
#![feature(const_fn)]
|
2016-11-22 16:31:31 -06:00
|
|
|
#![feature(exact_size_is_empty)]
|
2017-05-30 10:40:50 -05:00
|
|
|
#![feature(iterator_step_by)]
|
2015-06-10 15:33:52 -05:00
|
|
|
#![feature(pattern)]
|
2016-12-22 11:15:13 -06:00
|
|
|
#![feature(placement_in_syntax)]
|
2015-03-10 23:58:16 -05:00
|
|
|
#![feature(rand)]
|
2017-05-31 22:24:19 -05:00
|
|
|
#![feature(repr_align)]
|
2017-05-01 01:50:59 -05:00
|
|
|
#![feature(slice_rotate)]
|
2017-04-08 15:55:53 -05:00
|
|
|
#![feature(splice)]
|
2017-06-04 13:08:25 -05:00
|
|
|
#![feature(str_checked_slicing)]
|
2015-06-10 15:33:52 -05:00
|
|
|
#![feature(str_escape)]
|
2015-03-10 23:58:16 -05:00
|
|
|
#![feature(test)]
|
|
|
|
#![feature(unboxed_closures)]
|
|
|
|
#![feature(unicode)]
|
2017-03-06 15:06:30 -06:00
|
|
|
#![feature(utf8_error_error_len)]
|
2015-07-11 06:34:57 -05:00
|
|
|
|
2017-06-13 17:52:59 -05:00
|
|
|
extern crate alloc;
|
2015-03-10 23:58:16 -05:00
|
|
|
extern crate test;
|
2016-11-29 13:38:08 -06:00
|
|
|
extern crate std_unicode;
|
2017-03-09 01:50:48 -06:00
|
|
|
extern crate core;
|
2015-03-10 23:58:16 -05:00
|
|
|
|
2016-09-28 19:23:36 -05:00
|
|
|
use std::hash::{Hash, Hasher};
|
|
|
|
use std::collections::hash_map::DefaultHasher;
|
2015-08-11 19:27:05 -05:00
|
|
|
|
2015-03-10 23:58:16 -05:00
|
|
|
mod binary_heap;
|
|
|
|
mod btree;
|
2016-11-03 20:07:00 -05:00
|
|
|
mod cow_str;
|
2015-03-10 23:58:16 -05:00
|
|
|
mod fmt;
|
|
|
|
mod linked_list;
|
|
|
|
mod slice;
|
|
|
|
mod str;
|
|
|
|
mod string;
|
|
|
|
mod vec_deque;
|
|
|
|
mod vec;
|
2015-08-11 19:27:05 -05:00
|
|
|
|
|
|
|
fn hash<T: Hash>(t: &T) -> u64 {
|
2016-09-28 19:23:36 -05:00
|
|
|
let mut s = DefaultHasher::new();
|
2015-08-11 19:27:05 -05:00
|
|
|
t.hash(&mut s);
|
|
|
|
s.finish()
|
|
|
|
}
|