bbolt/bucket.go
Ben Johnson 73ab1d420d TODO
2014-01-24 16:32:18 -07:00

18 lines
203 B
Go

package bolt
type bucketid uint32
type Bucket struct {
*bucket
name string
}
type bucket struct {
id bucketid
flags uint32
root pgid
branches pgid
leafs pgid
entries uint64
}