(value2 *arrayContainer)
| 772 | } |
| 773 | |
| 774 | func (ac *arrayContainer) iandNotArray(value2 *arrayContainer) container { |
| 775 | length := difference(ac.content, value2.content, ac.content) |
| 776 | ac.content = ac.content[:length] |
| 777 | return ac |
| 778 | } |
| 779 | |
| 780 | func (ac *arrayContainer) andNotBitmap(value2 *bitmapContainer) container { |
| 781 | desiredcapacity := ac.getCardinality() |