| 15 | namespace af { |
| 16 | |
| 17 | array setunique(const array &in, const bool is_sorted) { |
| 18 | return setUnique(in, is_sorted); |
| 19 | } |
| 20 | |
| 21 | array setUnique(const array &in, const bool is_sorted) { |
| 22 | af_array out = 0; |
nothing calls this directly
no test coverage detected