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

Method __ge__

numpy/_core/defchararray.py:626–634  ·  view source on GitHub ↗

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

(self, other)

Source from the content-addressed store, hash-verified

624 return not_equal(self, other)
625
626 def __ge__(self, other):
627 """
628 Return (self >= other) element-wise.
629
630 See Also
631 --------
632 greater_equal
633 """
634 return greater_equal(self, other)
635
636 def __le__(self, other):
637 """

Calls 1

greater_equalFunction · 0.85

Tested by 1