Versions in this module Expand all Collapse all v1 v1.0.2 Mar 17, 2021 Changes in this version + type Node struct + type Trie struct + func NewTrie() *Trie + func (t *Trie) Insert(key string) + func (t *Trie) PrefixMatch(key string) []string + func (t *Trie) Root() *Node + func (t *Trie) Walk(node *Node) (ret []string)