(c container)
| 129 | } |
| 130 | |
| 131 | func toBitmapContainer(c container) container { |
| 132 | switch t := c.(type) { |
| 133 | case *arrayContainer: |
| 134 | return t.toBitmapContainer() |
| 135 | case *runContainer16: |
| 136 | if !t.isFull() { |
| 137 | return t.toBitmapContainer() |
| 138 | } |
| 139 | } |
| 140 | return c |
| 141 | } |
| 142 | |
| 143 | func appenderRoutine(bitmapChan chan<- *Bitmap, resultChan <-chan keyedContainer, expectedKeysChan <-chan int) { |
| 144 | expectedKeys := -1 |
no test coverage detected
searching dependent graphs…