lr_trie 3.0.0

Left-Right trie is trie capable of mapping any string to any string.
Documentation
lr_trie-3.0.0 has been yanked.

Left-Right Trie

Left-Right trie is trie that allows mapping of any string to any string with complexity based on alphabet used size.

let mut trie = LrTrie::new();
let one = KeyEntry::new("emoción").unwrap();
let another = KeyEntry::new("emotion").unwrap();

trie.insert(&one, &another);
assert!(trie.member(&one, LeftRight::Left).is_some());
assert!(trie.member(&another, LeftRight::Left).is_none());
assert!(trie.member(&another, LeftRight::Right).is_some());