(i uint16)
| 383 | } |
| 384 | |
| 385 | func (bc *bitmapContainer) iremoveReturnMinimized(i uint16) container { |
| 386 | if bc.iremove(i) { |
| 387 | if bc.cardinality == arrayDefaultMaxSize { |
| 388 | return bc.toArrayContainer() |
| 389 | } |
| 390 | } |
| 391 | return bc |
| 392 | } |
| 393 | |
| 394 | // iremove returns true if i was found. |
| 395 | func (bc *bitmapContainer) iremove(i uint16) bool { |
nothing calls this directly
no test coverage detected