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

Method __ge__

numpy/core/defchararray.py:2140–2148  ·  view source on GitHub ↗

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

(self, other)

Source from the content-addressed store, hash-verified

2138 return not_equal(self, other)
2139
2140 def __ge__(self, other):
2141 """
2142 Return (self >= other) element-wise.
2143
2144 See Also
2145 --------
2146 greater_equal
2147 """
2148 return greater_equal(self, other)
2149
2150 def __le__(self, other):
2151 """

Calls 1

greater_equalFunction · 0.70

Tested by 1