Crates.io | plain_trie |
lib.rs | plain_trie |
version | 1.0.6 |
source | src |
created_at | 2024-07-21 21:49:26.111896 |
updated_at | 2024-10-21 19:49:14.466732 |
description | Basic Trie is trie capable of mapping any T to string composed of English alphabet letters. |
homepage | https://github.com/bravequickcleverfibreyarn/tries/tree/main/trie |
repository | https://github.com/bravequickcleverfibreyarn/tries/tree/main/trie |
max_upload_size | |
id | 1310600 |
size | 21,199 |
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());