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

..03-May-2022-

.travis.ymlH A D13-Aug-201813

LICENSEH A D13-Aug-201811.1 KiB

README.mdH A D13-Aug-2018456

btree.goH A D13-Aug-201826.4 KiB

btree_mem.goH A D13-Aug-20181.9 KiB

btree_test.goH A D13-Aug-201817.4 KiB

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