| 36 | |
| 37 | template<typename T> |
| 38 | static inline af_array join(const int dim, const af_array first, |
| 39 | const af_array second) { |
| 40 | return getHandle(join<T>(dim, getArray<T>(first), getArray<T>(second))); |
| 41 | } |
| 42 | |
| 43 | template<typename T> |
| 44 | static inline af_array join_many(const int dim, const unsigned n_arrays, |
no test coverage detected