MCPcopy Index your code
hub / github.com/git-lfs/git-lfs / Append

Method Append

tq/transfer_queue.go:234–239  ·  view source on GitHub ↗

Append returns a new *objects with the given *objectTuple(s) appended to the end of the known objects.

(os ...*objectTuple)

Source from the content-addressed store, hash-verified

232// Append returns a new *objects with the given *objectTuple(s) appended to the
233// end of the known objects.
234func (s *objects) Append(os ...*objectTuple) *objects {
235 return &objects{
236 completed: s.completed,
237 objects: append(s.objects, os...),
238 }
239}
240
241// First returns the first *objectTuple in the chain of objects.
242func (s *objects) First() *objectTuple {

Callers 1

rememberMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected