Files

10 lines
122 B
Go

package ramdb
import "github.com/google/btree"
type index struct {
tree *btree.BTree
column string
table *table
}