NOLINTNEXTLINE(performance-unnecessary-value-param)
| 49 | |
| 50 | // NOLINTNEXTLINE(performance-unnecessary-value-param) |
| 51 | array dense(const array sparse) { |
| 52 | af_array out = 0; |
| 53 | AF_THROW(af_sparse_to_dense(&out, sparse.get())); |
| 54 | return array(out); |
| 55 | } |
| 56 | |
| 57 | void sparseGetInfo( |
| 58 | array& values, array& rowIdx, array& colIdx, storage& stype, |
no test coverage detected