ref: 9bd37998c9ea890401b66604806f7d1fe06b9256
dir: /object/store/packed/delta_chain.go/
package packed
import objecttype "codeberg.org/lindenii/furgit/object/type"
// deltaChain describes how to reconstruct one requested object.
type deltaChain struct {
// baseLoc points to the innermost base object.
baseLoc location
// baseType is the canonical object type resolved from baseLoc.
baseType objecttype.Type
// deltas contains delta objects from target down toward base.
deltas []deltaNode
}