| 27 | |
| 28 | template<typename T> |
| 29 | static inline af_array where(const af_array in) { |
| 30 | // Making it more explicit that the output is uint |
| 31 | return getHandle<uint>(where<T>(getArray<T>(in))); |
| 32 | } |
| 33 | |
| 34 | af_err af_where(af_array* idx, const af_array in) { |
| 35 | try { |
no outgoing calls
no test coverage detected