| 29 | } |
| 30 | |
| 31 | array setUnion(const array &first, const array &second, const bool is_unique) { |
| 32 | af_array out = 0; |
| 33 | AF_THROW(af_set_union(&out, first.get(), second.get(), is_unique)); |
| 34 | return array(out); |
| 35 | } |
| 36 | |
| 37 | array setintersect(const array &first, const array &second, |
| 38 | const bool is_unique) { |
no test coverage detected