(a container)
| 802 | } |
| 803 | |
| 804 | func (bc *bitmapContainer) iand(a container) container { |
| 805 | switch x := a.(type) { |
| 806 | case *arrayContainer: |
| 807 | return bc.iandArray(x) |
| 808 | case *bitmapContainer: |
| 809 | return bc.iandBitmap(x) |
| 810 | case *runContainer16: |
| 811 | if x.isFull() { |
| 812 | return bc.clone() |
| 813 | } |
| 814 | return bc.iandRun16(x) |
| 815 | } |
| 816 | panic("unsupported container type") |
| 817 | } |
| 818 | |
| 819 | func (bc *bitmapContainer) iandRun16(rc *runContainer16) container { |
| 820 | rcb := newBitmapContainerFromRun(rc) |
nothing calls this directly
no test coverage detected