nolock 0.4.1

A collection of Lock-Free Datastructures
Documentation
1
2
3
4
5
6
7
8
9
10
use std::collections::hash_map::RandomState;

use nolock::hash_trie::HashTrieMap;

fn main() {
    let map: HashTrieMap<String, usize, RandomState> = HashTrieMap::new();

    map.insert("testing".into(), 123);
    map.insert("other".into(), 234);
}