(self, x, y, /, **kwargs)
| 78 | """Wrapper for dispatching binary ufuncs.""" |
| 79 | |
| 80 | def __call__(self, x, y, /, **kwargs): |
| 81 | xp = get_array_namespace(x, y) |
| 82 | func = getattr(xp, self.__name__) |
| 83 | return xr.apply_ufunc(func, x, y, dask="allowed", **kwargs) |
| 84 | |
| 85 | |
| 86 | def _skip_signature(doc, name): |
nothing calls this directly
no test coverage detected