blob: 3f6011cc05cdea77fd72cb645d8efd73d03b5348 (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
package commitgraph
import (
"os"
"codeberg.org/lindenii/furgit/format/commitgraph/bloom"
)
type layer struct {
path string
file *os.File
data []byte
numCommits uint32
baseCount uint32
globalFrom uint32
chunkOIDFanout []byte
chunkOIDLookup []byte
chunkCommit []byte
chunkGeneration []byte
chunkGenerationOv []byte
chunkExtraEdges []byte
chunkBloomIndex []byte
chunkBloomData []byte
chunkBaseGraphs []byte
bloomSettings *bloom.Settings
}
|