blob: 56f7b078eeef9fe6db2c2fa83502ec4340d62e84 (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
package reading
// deltaNode describes one delta object in a reconstruction chain.
type deltaNode struct {
// loc identifies the delta object's pack location.
loc location
// dataOffset points to the start of the delta zlib payload in pack.
dataOffset int
}
|