(self, func, *args, **kwargs)
| 577 | return self.map_blocks(chunk.astype, dtype=dtype, astype_dtype=dtype, **kwargs) |
| 578 | |
| 579 | def map_blocks(self, func, *args, **kwargs): |
| 580 | from dask.array._array_expr._map_blocks import map_blocks |
| 581 | |
| 582 | return map_blocks(func, self, *args, **kwargs) |
| 583 | |
| 584 | @property |
| 585 | def _elemwise(self): |