Registry / utility / armon-go-radix

armon-go-radix

JSON →
library1.0.0gogounverified

Package radix implements a radix tree (prefix tree) data structure.

go get github.com/armon/go-radix
INSTALL
IMPORT
SIG · ARMON-GO-RADIX
A
armon-go-radix
utilitygov1.0.0
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

radix
github.com/armon/go-radix

Create a radix tree, insert a key-value pair, and retrieve it.

package main import ( "fmt" "github.com/armon/go-radix" ) func main() { r := radix.New() r.Insert("foo", 1) val, ok := r.Get("foo") fmt.Println(val, ok) }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
1.0.0latest on pkg.go.dev
Audit
Dependencies

No dependency data recorded yet.

Agent activity
19 hits · last 30 days
node
16
OpenAI (training)
2
Meta
1
Resources
armon-go-radix — go get armon-go-radix · libregistry