(self)
| 2347 | return self.map_blocks(chunk.astype, dtype=dtype, astype_dtype=dtype, **kwargs) |
| 2348 | |
| 2349 | def __abs__(self): |
| 2350 | return elemwise(operator.abs, self) |
| 2351 | |
| 2352 | @check_if_handled_given_other |
| 2353 | def __add__(self, other): |
nothing calls this directly
no test coverage detected