| 111 | |
| 112 | template<typename T> |
| 113 | af_array copyArray(const af_array in) { |
| 114 | const detail::Array<T> &inArray = getArray<T>(in); |
| 115 | return getHandle<T>(detail::copyArray<T>(inArray)); |
| 116 | } |
| 117 | |
| 118 | template<typename T> |
| 119 | void releaseHandle(const af_array arr); |
no outgoing calls
no test coverage detected