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

Method __rmod__

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

Source from the content-addressed store, hash-verified

695 return self._apply_operator(operator.rlshift, other)
696
697 def __rmod__(self, other):
698 other = other._transform if isinstance(other, Interactive) else other
699 return self._apply_operator(operator.mod, other, reverse=True)
700
701 def __rmul__(self, other):
702 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