trie_find_prefix.Rd
Finds all words that match the prefix in the trie.
trie_find_prefix(trie, prefix)
A trie.
trie
The prefix of the words to search for.
List of words matching the prefix
trie <- trie_create() trie_find_prefix(trie, "be") #> character(0)