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