| 66 | |
| 67 | template<typename T> |
| 68 | static inline af_array setUnion(const af_array first, const af_array second, |
| 69 | const bool is_unique) { |
| 70 | return getHandle( |
| 71 | setUnion(getArray<T>(first), getArray<T>(second), is_unique)); |
| 72 | } |
| 73 | |
| 74 | af_err af_set_union(af_array* out, const af_array first, const af_array second, |
| 75 | const bool is_unique) { |