(value2 *arrayContainer)
| 763 | } |
| 764 | |
| 765 | func (ac *arrayContainer) andNotArray(value2 *arrayContainer) container { |
| 766 | value1 := ac |
| 767 | desiredcapacity := value1.getCardinality() |
| 768 | answer := newArrayContainerCapacity(desiredcapacity) |
| 769 | length := difference(value1.content, value2.content, answer.content) |
| 770 | answer.content = answer.content[:length] |
| 771 | return answer |
| 772 | } |
| 773 | |
| 774 | func (ac *arrayContainer) iandNotArray(value2 *arrayContainer) container { |
| 775 | length := difference(ac.content, value2.content, ac.content) |
no test coverage detected