fhash 0.7.1

Blazingly fast hash for HashMaps in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use fhash::RandomState;
use hashbrown::HashSet;

fn main() {
    let mut set: HashSet<&str, RandomState> = HashSet::default();

    // Inserting values into the HashMap
    set.insert("apple");
    set.insert("banana");

    println!("{set:?}");
}