blob: 2c97c25e5c6c6cd3a084b456611e07bb74efbf69 (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
package read
import objectid "lindenii.org/go/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
}
|