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

Method __rrshift__

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

Source from the content-addressed store, hash-verified

711 return self._apply_operator(operator.pow, other, reverse=True)
712
713 def __rrshift__(self, other):
714 other = other._transform if isinstance(other, Interactive) else other
715 return self._apply_operator(operator.rrshift, other)
716
717 def __rsub__(self, other):
718 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