MCPcopy Create free account
hub / github.com/numpy/numpy / __lt__

Method __lt__

numpy/core/defchararray.py:2170–2178  ·  view source on GitHub ↗

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

(self, other)

Source from the content-addressed store, hash-verified

2168 return greater(self, other)
2169
2170 def __lt__(self, other):
2171 """
2172 Return (self < other) element-wise.
2173
2174 See Also
2175 --------
2176 less
2177 """
2178 return less(self, other)
2179
2180 def __add__(self, other):
2181 """

Callers

nothing calls this directly

Calls 1

lessFunction · 0.70

Tested by

no test coverage detected