a41f938cec
As we have seen, dependencies version can prevent the build. We should user lock versions on dependencies that we know work: * Packages are vendored * Add Godep support * Added addtional install step in readme * Fix travis build error
12 lignes
456 o
Markdown
12 lignes
456 o
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.
|