//! Generally don't use this if your key would have a lot of collisions being represents in 8 bits, otherwise it might be a faster alternative to hash-based maps. You should check yourself before sticking with this crate instead of `std`'s vectorised map implementations.
//! Generally don't use this if your key would have a lot of collisions being represents in 8 bits, otherwise it might be a faster alternative to hash-based maps. You should check yourself before sticking with this crate instead of `std`'s vectorised map implementations.
#![cfg_attr(not(test), no_std)]
#![cfg_attr(nightly, feature(test))]
#![cfg_attr(nightly, feature(test))]
#![cfg_attr(nightly, feature(drain_filter))]
#![cfg_attr(nightly, feature(drain_filter))]
#![cfg_attr(nightly, feature(never_type))]
#![cfg_attr(nightly, feature(never_type))]
#[cfg(nightly)]externcratetest;
#[cfg(nightly)]externcratetest;
externcratealloc;
constMAX: usize=256;
constMAX: usize=256;
usestd::borrow::Borrow;
usealloc::vec;
usealloc::vec::Vec;
usecore::borrow::Borrow;
pubmoditer;
pubmoditer;
useiter::*;
useiter::*;
@ -138,7 +141,7 @@ where K: Collapse
/// This is a count that iterates over all slots, if possible store it in a temporary instead of re-calling it many times.
/// This is a count that iterates over all slots, if possible store it in a temporary instead of re-calling it many times.