mirror of
https://github.com/kubernetes/sample-controller.git
synced 2025-02-14 02:32:52 +08:00
914478ebaa
Automatic merge from submit-queue. If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>. move cached_discovery to client-go/discovery **Release note**: ```release-note NONE ``` Moves the cmd/util CachedDiscoveryClient to client-go cc @soltysh @deads2k Kubernetes-commit: f2ea83bef88f9d2783abe0c00de563db13ec04f4
13 lines
456 B
Markdown
13 lines
456 B
Markdown
# BTree implementation for Go
|
|
|
|
![Travis CI Build Status](https://api.travis-ci.org/google/btree.svg?branch=master)
|
|
|
|
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.
|