()
| 30 | type bitmapContainerHeap []bitmapContainerKey |
| 31 | |
| 32 | func (h bitmapContainerHeap) Len() int { return len(h) } |
| 33 | func (h bitmapContainerHeap) Less(i, j int) bool { return h[i].key < h[j].key } |
| 34 | func (h bitmapContainerHeap) Swap(i, j int) { h[i], h[j] = h[j], h[i] } |
| 35 |