plain_trie

Crates.ioplain_trie
lib.rsplain_trie
version1.0.6
sourcesrc
created_at2024-07-21 21:49:26.111896
updated_at2024-10-21 19:49:14.466732
descriptionBasic Trie is trie capable of mapping any T to string composed of English alphabet letters.
homepagehttps://github.com/bravequickcleverfibreyarn/tries/tree/main/trie
repositoryhttps://github.com/bravequickcleverfibreyarn/tries/tree/main/trie
max_upload_size
id1310600
size21,199
boldswiftsmartfiberhank (bravequickcleverfibreyarn)

documentation

https://docs.rs/plain_trie/latest/plain_trie/index.html

README

Plain Trie

Plain trie is basic trie that allows mapping of any T to string composed of English alphabet letters.

let key = Key::new("touchstone").unwrap();

let mut trie = Trie::new();
trie.insert(3usize, &key);

assert!(trie.member(&key).is_some());
Commit count: 0

cargo fmt