mirror of https://github.com/etcd-io/bbolt.git
21 lines
353 B
Go
21 lines
353 B
Go
package bolt
|
|
|
|
import (
|
|
"unsafe"
|
|
)
|
|
|
|
const bnodeSize = int(unsafe.Sizeof(lnode{}))
|
|
|
|
// bnode represents a node on a branch page.
|
|
type bnode struct {
|
|
pos uint32
|
|
ksize uint32
|
|
pgid pgid
|
|
}
|
|
|
|
// key returns a byte slice of the node key.
|
|
func (n *bnode) key() []byte {
|
|
buf := (*[maxAllocSize]byte)(unsafe.Pointer(n))
|
|
return buf[n.pos : n.pos+n.ksize]
|
|
}
|