Return a flattened list of all the blocks in the array in C order.
(self)
| 6062 | return self._array.numblocks |
| 6063 | |
| 6064 | def ravel(self) -> list[Array]: |
| 6065 | """ |
| 6066 | Return a flattened list of all the blocks in the array in C order. |
| 6067 | """ |
| 6068 | return [self[idx] for idx in np.ndindex(self.shape)] |
| 6069 | |
| 6070 | |
| 6071 | def _numpy_vindex(indexer, arr): |
no outgoing calls