blob: 03698eb144cf13c45357eb656c1b94cdd9752dd2 (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
package read
import objectid "codeberg.org/lindenii/furgit/object/id"
// Reader provides read-only access to one mmap-backed commit-graph snapshot.
//
// Labels: MT-Safe, Close-Caller.
type Reader struct {
algo objectid.Algorithm
hashVersion uint8
layers []layer
total uint32
}
|