• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..26-Oct-2021-

.travis.ymlH A D26-Oct-202113 21

LICENSEH A D26-Oct-202111.1 KiB203169

README.mdH A D26-Oct-2021456 138

btree.goH A D26-Oct-202126.4 KiB891569

go.modH A D26-Oct-2021629 1815

README.md

1# BTree implementation for Go
2
3![Travis CI Build Status](https://api.travis-ci.org/google/btree.svg?branch=master)
4
5This package provides an in-memory B-Tree implementation for Go, useful as
6an ordered, mutable data structure.
7
8The API is based off of the wonderful
9http://godoc.org/github.com/petar/GoLLRB/llrb, and is meant to allow btree to
10act as a drop-in replacement for gollrb trees.
11
12See http://godoc.org/github.com/google/btree for documentation.
13