MCPcopy Index your code
hub / github.com/pydata/xarray / __call__

Method __call__

xarray/ufuncs.py:80–83  ·  view source on GitHub ↗
(self, x, y, /, **kwargs)

Source from the content-addressed store, hash-verified

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
86def _skip_signature(doc, name):

Callers

nothing calls this directly

Calls 1

get_array_namespaceFunction · 0.70

Tested by

no test coverage detected