ref: fb9eb058f1c9b7cb26f33bbe679a85f530566641
dir: /format/commitgraph/read/layer.go/
package read
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
}