kutil 0.0.5

Kutil utilities collection
Documentation
1
2
3
4
5
6
7
8
9
10
11
use std::collections::*;

/// Fast [HashSet].
///
/// The implementation uses [rapidhash::fast::RandomState].
///
/// Note that this rapidhash a
/// [non-cryptographic hash function](https://en.wikipedia.org/wiki/Non-cryptographic_hash_function).
pub type FastHashSet<ValueT> = HashSet<ValueT, rapidhash::fast::RandomState>;

pub use rapidhash::HashSetExt;