(value2 *arrayContainer)
| 933 | } |
| 934 | |
| 935 | func (ac *arrayContainer) intersectsArray(value2 *arrayContainer) bool { |
| 936 | return intersects2by2( |
| 937 | ac.content, |
| 938 | value2.content) |
| 939 | } |
| 940 | |
| 941 | func (ac *arrayContainer) iandArray(value2 *arrayContainer) container { |
| 942 | length := intersection2by2( |
no test coverage detected