moby/vendor/github.com/armon/go-radix
Sebastiaan van Stijn cb358e8a19
vendor: github.com/armon/go-radix v1.0.1-0.20221118154546-54df44f2176c
Previously we had to use a replace rule, as later versions of this
module resulted in a panic. This issue was fixed in:
f30034d788

Which means we can remove the replace rule, and update the dependency.
No new release was tagged yet, so sticking to a "commit" for now.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
(cherry picked from commit a2d758acc9)
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2022-11-18 17:35:07 +01:00
..
.gitignore vendor: regenerate 2022-01-18 15:46:04 +01:00
.travis.yml vendor: github.com/armon/go-radix v1.0.1-0.20221118154546-54df44f2176c 2022-11-18 17:35:07 +01:00
LICENSE project: use vndr for vendoring 2016-11-03 15:31:46 -07:00
radix.go vendor: github.com/armon/go-radix v1.0.1-0.20221118154546-54df44f2176c 2022-11-18 17:35:07 +01:00
README.md vendor: github.com/armon/go-radix v1.0.1-0.20221118154546-54df44f2176c 2022-11-18 17:35:07 +01:00

go-radix Build Status

Provides the radix package that implements a radix tree. The package only provides a single Tree implementation, optimized for sparse nodes.

As a radix tree, it provides the following:

  • O(k) operations. In many cases, this can be faster than a hash table since the hash function is an O(k) operation, and hash tables have very poor cache locality.
  • Minimum / Maximum value lookups
  • Ordered iteration

For an immutable variant, see go-immutable-radix.

Documentation

The full documentation is available on Godoc.

Example

Below is a simple example of usage

// Create a tree
r := radix.New()
r.Insert("foo", 1)
r.Insert("bar", 2)
r.Insert("foobar", 2)

// Find the longest prefix match
m, _, _ := r.LongestPrefix("foozip")
if m != "foo" {
    panic("should be foo")
}