| 216 | } |
| 217 | |
| 218 | array flat(const array &in) { |
| 219 | af_array out = 0; |
| 220 | AF_THROW(af_flat(&out, in.get())); |
| 221 | return array(out); |
| 222 | } |
| 223 | |
| 224 | array join(const int dim, const array &first, const array &second) { |
| 225 | af_array out = 0; |
no test coverage detected