#![feature(alloc)]
#![feature(allocator_api)]
#![feature(dropck_eyepatch)]
#![feature(fused)]
#![feature(generic_param_attrs)]
#![feature(placement_new_protocol)]
#![feature(shared)]
#![feature(unique)]
#![cfg_attr(test, feature(placement_in_syntax))]
#![cfg_attr(test, feature(test))]
extern crate alloc;
extern crate rayon;
#[cfg(test)] extern crate rand;
use std::borrow;
use std::cmp;
use std::fmt;
use std::hash;
use std::iter;
use std::marker;
use std::mem;
use std::ops;
use std::ptr;
#[cfg(test)] use std::panic;
#[cfg(test)] use std::cell;
pub use self::hash_map::HashMap;
pub use self::hash_set::HashSet;
mod std_hash;
pub mod hash_map {
pub use super::std_hash::map::*;
}
pub mod hash_set {
pub use super::std_hash::set::*;
}