(i, j int)
| 231 | func (h contentMetadataHeap) Len() int { return len(h.data) } |
| 232 | |
| 233 | func (h contentMetadataHeap) Less(i, j int) bool { |
| 234 | return h.data[i].Timestamp.Before(h.data[j].Timestamp) |
| 235 | } |
| 236 | |
| 237 | func (h contentMetadataHeap) Swap(i, j int) { |
| 238 | iBlobID := h.data[i].BlobID |