Versions in this module Expand all Collapse all v0 v0.3.0 Apr 26, 2016 Changes in this version + type BTree struct + func New(degree int) *BTree + func (t *BTree) Ascend(iterator ItemIterator) + func (t *BTree) AscendGreaterOrEqual(pivot Item, iterator ItemIterator) + func (t *BTree) AscendLessThan(pivot Item, iterator ItemIterator) + func (t *BTree) AscendRange(greaterOrEqual, lessThan Item, iterator ItemIterator) + func (t *BTree) Delete(item Item) Item + func (t *BTree) DeleteMax() Item + func (t *BTree) DeleteMin() Item + func (t *BTree) Get(key Item) Item + func (t *BTree) Has(key Item) bool + func (t *BTree) Len() int + func (t *BTree) ReplaceOrInsert(item Item) Item + type Int int + func (a Int) Less(b Item) bool + type Item interface + Less func(than Item) bool + type ItemIterator func(i Item) bool