()
| 260 | } |
| 261 | |
| 262 | func (ac *arrayContainer) toBitmapContainer() *bitmapContainer { |
| 263 | bc := newBitmapContainer() |
| 264 | bc.loadData(ac) |
| 265 | return bc |
| 266 | } |
| 267 | |
| 268 | func (ac *arrayContainer) iadd(x uint16) (wasNew bool) { |
| 269 | // Special case adding to the end of the container. |
no test coverage detected