MCPcopy Create free account
hub / github.com/holoviz/hvplot / __ror__

Method __ror__

hvplot/interactive.py:705–707  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

703 return self._apply_operator(operator.mul, other, reverse=True)
704
705 def __ror__(self, other):
706 other = other._transform if isinstance(other, Interactive) else other
707 return self._apply_operator(operator.or_, other, reverse=True)
708
709 def __rpow__(self, other):
710 other = other._transform if isinstance(other, Interactive) else other

Callers

nothing calls this directly

Calls 1

_apply_operatorMethod · 0.95

Tested by

no test coverage detected