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

Method __lt__

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

Source from the content-addressed store, hash-verified

634 return self._apply_operator(operator.le, other)
635
636 def __lt__(self, other):
637 other = other._transform if isinstance(other, Interactive) else other
638 return self._apply_operator(operator.lt, other)
639
640 def __lshift__(self, other):
641 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