(self)
| 2341 | return self.map_blocks(chunk.astype, dtype=dtype, astype_dtype=dtype, **kwargs) |
| 2342 | |
| 2343 | def __abs__(self): |
| 2344 | return elemwise(operator.abs, self) |
| 2345 | |
| 2346 | @check_if_handled_given_other |
| 2347 | def __add__(self, other): |
nothing calls this directly
no test coverage detected