blob: 24ede1e0a706e76c8dc98f955cebdbbea3a52193 (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
package packed
// 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
}
|