├── .gitignore ├── LICENSE ├── README.md ├── fixtures └── test.txt ├── go.mod ├── trie.go └── trie_test.go /.gitignore: -------------------------------------------------------------------------------- 1 | *.test 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekparker/trie/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekparker/trie/HEAD/README.md -------------------------------------------------------------------------------- /fixtures/test.txt: -------------------------------------------------------------------------------- 1 | foo 2 | bar 3 | baz 4 | -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/derekparker/trie/v3 2 | 3 | go 1.23.1 4 | -------------------------------------------------------------------------------- /trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekparker/trie/HEAD/trie.go -------------------------------------------------------------------------------- /trie_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekparker/trie/HEAD/trie_test.go --------------------------------------------------------------------------------