| 105 | |
| 106 | public: |
| 107 | strided_array(array a, icm::index_mapping_vector indices) |
| 108 | : shape_(icm::slice_shape(a.shape(), indices.begin(), indices.end())) |
| 109 | , a_(std::move(a)) |
| 110 | , indices_(std::move(indices)) |
| 111 | {} |
| 112 | |
| 113 | enum dtype dtype() const |
| 114 | { |
nothing calls this directly
no test coverage detected