Versions in this module Expand all Collapse all v1 v1.0.0 Jan 20, 2026 Changes in this version + const Separator + type Node struct + type PathTrie struct + func NewPathTrie[K any, T any]() *PathTrie[K, T] + func (t *PathTrie[K, T]) FindByPrefix(prefix string) map[string]T + func (t *PathTrie[K, T]) Insert(pattern string, value T) + func (t *PathTrie[K, T]) Search(path string) (T, bool)