| 35 | } |
| 36 | |
| 37 | array setintersect(const array &first, const array &second, |
| 38 | const bool is_unique) { |
| 39 | return setIntersect(first, second, is_unique); |
| 40 | } |
| 41 | |
| 42 | array setIntersect(const array &first, const array &second, |
| 43 | const bool is_unique) { |
nothing calls this directly
no test coverage detected