aboutsummaryrefslogtreecommitdiff
path: root/bucket.go
blob: f9c35666ff2150c6261e049ae10b05ff887aa212 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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
}