MCPcopy Index your code
hub / github.com/numpy/numpy / __lt__

Method __lt__

numpy/_core/defchararray.py:656–664  ·  view source on GitHub ↗

Return (self < other) element-wise. See Also -------- less

(self, other)

Source from the content-addressed store, hash-verified

654 return greater(self, other)
655
656 def __lt__(self, other):
657 """
658 Return (self < other) element-wise.
659
660 See Also
661 --------
662 less
663 """
664 return less(self, other)
665
666 def __add__(self, other):
667 """

Callers

nothing calls this directly

Calls 1

lessFunction · 0.85

Tested by

no test coverage detected