(i uint16)
| 364 | } |
| 365 | |
| 366 | func (bc *bitmapContainer) iaddReturnMinimized(i uint16) container { |
| 367 | bc.iadd(i) |
| 368 | if bc.isFull() { |
| 369 | return newRunContainer16Range(0, MaxUint16) |
| 370 | } |
| 371 | return bc |
| 372 | } |
| 373 | |
| 374 | // iadd adds the arg i, returning true if not already present |
| 375 | func (bc *bitmapContainer) iadd(i uint16) bool { |
nothing calls this directly
no test coverage detected