| 40 | } |
| 41 | |
| 42 | array setIntersect(const array &first, const array &second, |
| 43 | const bool is_unique) { |
| 44 | af_array out = 0; |
| 45 | AF_THROW(af_set_intersect(&out, first.get(), second.get(), is_unique)); |
| 46 | return array(out); |
| 47 | } |
| 48 | |
| 49 | } // namespace af |
no test coverage detected