Searched defs:trieNode (Results 1 – 2 of 2) sorted by relevance
123 type trieNode struct { struct126 value string132 priority int145 prefix string146 next *trieNode155 table []*trieNode158 func (t *trieNode) add(key, val string, priority int, r *genericReplacer) {
18 func (r *genericReplacer) printNode(t *trieNode, depth int) (s string) {