Registry / utility / google-btree

google-btree

JSON →
library1.1.3gogounverified

Implements in-memory B-Trees of arbitrary degree for efficient key-value storage and retrieval.

go get github.com/google/btree
INSTALL
IMPORT
SIG · GOOGLE-BTREE
G
google-btree
utilitygov1.1.3
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.

btree
github.com/google/btree

Creates a B-Tree, inserts an integer, and retrieves the minimum value.

package main import ( "fmt" "github.com/google/btree" ) func main() { tr := btree.New(2) tr.ReplaceOrInsert(btree.Int(42)) fmt.Println(tr.Min()) }
Debug
Known issues

No known issues recorded.

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

No dependency data recorded yet.

Agent activity
4 hits · last 30 days
node
4
Resources
google-btree — go get google-btree · libregistry