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

Method __gt__

numpy/core/defchararray.py:2160–2168  ·  view source on GitHub ↗

Return (self > other) element-wise. See Also -------- greater

(self, other)

Source from the content-addressed store, hash-verified

2158 return less_equal(self, other)
2159
2160 def __gt__(self, other):
2161 """
2162 Return (self > other) element-wise.
2163
2164 See Also
2165 --------
2166 greater
2167 """
2168 return greater(self, other)
2169
2170 def __lt__(self, other):
2171 """

Calls 1

greaterFunction · 0.70

Tested by 1