(self, func, types, args, kwargs)
| 125 | return type(self)(getattr(ufunc, method)(*inputs, **kwargs), **self.attrs) |
| 126 | |
| 127 | def __array_function__(self, func, types, args, kwargs): |
| 128 | args = tuple(self._downcast_args(args)) |
| 129 | return type(self)(func(*args, **kwargs), **self.attrs) |
| 130 | |
| 131 | def __dask_graph__(self): |
| 132 | # Note: make sure that dask dusk arrays do not interfere with the |
no test coverage detected