| 222 | } |
| 223 | |
| 224 | array join(const int dim, const array &first, const array &second) { |
| 225 | af_array out = 0; |
| 226 | AF_THROW(af_join(&out, dim, first.get(), second.get())); |
| 227 | return array(out); |
| 228 | } |
| 229 | |
| 230 | array join(const int dim, const array &first, const array &second, |
| 231 | const array &third) { |
nothing calls this directly
no test coverage detected