kutil 0.0.5

Kutil utilities collection
Documentation
1
2
3
4
5
6
7
8
9
10
pub use bimap::{BiBTreeMap, BiHashMap};

/// Fast [BiHashMap](BiHashMap).
///
/// The implementation uses [rapidhash::fast::RandomState].
///
/// Note that rapidhash is 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, rapidhash::fast::RandomState>;