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