blob: b7af32825a4dbbc832e9f13c0757dfc6f9d0cf42 (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
package commitgraph
import "codeberg.org/lindenii/furgit/objectid"
// Reader provides read-only access to one mmap-backed commit-graph snapshot.
//
// It is safe for concurrent read-only queries.
type Reader struct {
algo objectid.Algorithm
hashVersion uint8
layers []layer
total uint32
}
|