minikube/vendor/github.com/google/btree
Matt Rickard 7b9689745f Upgrade to k8s v1.4.0-alpha.2
Update to kubernetes 1.4-alpha3.

This required a "go get k8s.io/client-go" before godep save would work.
2016-09-29 15:57:24 -07:00
..
.travis.yml First attempt at updating k8s. 2016-05-13 14:05:27 -07:00
LICENSE First attempt at updating k8s. 2016-05-13 14:05:27 -07:00
README.md Upgrade to k8s v1.4.0-alpha.2 2016-09-29 15:57:24 -07:00
btree.go Upgrade to k8s v1.4.0-alpha.2 2016-09-29 15:57:24 -07:00
btree_mem.go First attempt at updating k8s. 2016-05-13 14:05:27 -07:00

README.md

BTree implementation for Go

Travis CI Build Status

This package provides an in-memory B-Tree implementation for Go, useful as an ordered, mutable data structure.

The API is based off of the wonderful http://godoc.org/github.com/petar/GoLLRB/llrb, and is meant to allow btree to act as a drop-in replacement for gollrb trees.

See http://godoc.org/github.com/google/btree for documentation.