()
| 303 | type completedParts []CompletePart |
| 304 | |
| 305 | func (a completedParts) Len() int { return len(a) } |
| 306 | func (a completedParts) Swap(i, j int) { a[i], a[j] = a[j], a[i] } |
| 307 | func (a completedParts) Less(i, j int) bool { return a[i].PartNumber < a[j].PartNumber } |
| 308 |
no outgoing calls