blob: 922d459b9fd5d604131b6e8ed10a99c0497783ee (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
package read
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
}
|