Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

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