(value2 *arrayContainer)
| 927 | } |
| 928 | |
| 929 | func (ac *arrayContainer) andArrayCardinality(value2 *arrayContainer) int { |
| 930 | return intersection2by2Cardinality( |
| 931 | ac.content, |
| 932 | value2.content) |
| 933 | } |
| 934 | |
| 935 | func (ac *arrayContainer) intersectsArray(value2 *arrayContainer) bool { |
| 936 | return intersects2by2( |
no test coverage detected