Struct Trie
tiny::trie
pub struct Trie { /* fields omitted */ }
impl Trie
fn new() -> Trie
fn clear(&mut self)
fn insert(&mut self, str: &str)
fn contains(&self, str: &str) -> bool
fn remove(&mut self, str: &str)
fn to_strings(&self, prefix: &str) -> Vec<String>
fn drop_pfx(&self, prefix: &mut Iterator<Item = char>) -> Vec<String>