(root Pgid, seq uint64)
| 17 | } |
| 18 | |
| 19 | func NewInBucket(root Pgid, seq uint64) InBucket { |
| 20 | return InBucket{ |
| 21 | root: root, |
| 22 | sequence: seq, |
| 23 | } |
| 24 | } |
| 25 | |
| 26 | func (b *InBucket) RootPage() Pgid { |
| 27 | return b.root |
no outgoing calls
no test coverage detected