Versions in this module Expand all Collapse all v0 v0.5.0 May 21, 2025 Changes in this version + type PathTrie struct + func NewTrie[V any]() *PathTrie[V] + func (t *PathTrie[V]) Delete(path string) (old V, found bool) + func (t *PathTrie[V]) DeleteAll(path string) (old V, found bool) + func (t *PathTrie[V]) Get(path string) (val V, found bool) + func (t *PathTrie[V]) Set(path string, value V) (old V, found bool) + func (t *PathTrie[V]) WalkFrom(path string, walkFn WalkFunc[V]) error + type WalkFunc func(path string, value V) error