Return a flattened list of all the blocks in the array in C order.
(self)
| 6265 | return self._array.numblocks |
| 6266 | |
| 6267 | def ravel(self) -> list[Array]: |
| 6268 | """ |
| 6269 | Return a flattened list of all the blocks in the array in C order. |
| 6270 | """ |
| 6271 | return [self[idx] for idx in np.ndindex(self.shape)] |
| 6272 | |
| 6273 | |
| 6274 | def _numpy_vindex(indexer, arr): |
no outgoing calls