kutil 0.0.6

Kutil utilities collection
Documentation
1
2
3
4
5
6
7
8
9
10
use super::build_hasher::*;

pub use bimap::BiHashMap;

/// Fast [BiHashMap].
///
/// Note that the implementation relies on a
/// [non-cryptographic hash function](https://en.wikipedia.org/wiki/Non-cryptographic_hash_function).
#[cfg(feature = "fast-collections")]
pub type FastBiHashMap<LeftT, RightT> = BiHashMap<LeftT, RightT, FastBuildHasher>;