MCPcopy
hub / github.com/dask/dask / _get_binary_operator

Method _get_binary_operator

dask/delayed.py:799–801  ·  view source on GitHub ↗
(cls, op, inv=False)

Source from the content-addressed store, hash-verified

797
798 @classmethod
799 def _get_binary_operator(cls, op, inv=False):
800 method = delayed(right(op) if inv else op, pure=True)
801 return lambda *args, **kwargs: method(*args, **kwargs)
802
803 _get_unary_operator = _get_binary_operator
804

Callers

nothing calls this directly

Calls 3

delayedFunction · 0.85
rightFunction · 0.85
methodFunction · 0.85

Tested by

no test coverage detected