package
0.0.0-20251006162705-f1c93e60bab6
Repository: https://github.com/alphagov/router.git
Documentation: pkg.go.dev
# README
trie
A minimal implementation of a trie data structure for Go. Differs
from most implementations in that it uses string slices ([]string
) as keys,
rather than just strings.
This makes it suitable for efficiently storing information about hierarchical systems in general, rather than being specifically geared towards string lookup.
See also the Godoc documentation for
trie
.