| 25 | } |
| 26 | |
| 27 | array setunion(const array &first, const array &second, const bool is_unique) { |
| 28 | return setUnion(first, second, is_unique); |
| 29 | } |
| 30 | |
| 31 | array setUnion(const array &first, const array &second, const bool is_unique) { |
| 32 | af_array out = 0; |
nothing calls this directly
no test coverage detected