Trie.Complete (gb.data)
Function Complete ( Prefix As String ) As String
Return the completion of the given prefix, that is the longest unambiguous continuation of the input string.
Like when you hit 
<Tab> in the console, your shell might complete a command or file name for you.
If the prefix is not found, Null is returned.