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

Method __gt__

numpy/_core/defchararray.py:646–654  ·  view source on GitHub ↗

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

(self, other)

Source from the content-addressed store, hash-verified

644 return less_equal(self, other)
645
646 def __gt__(self, other):
647 """
648 Return (self > other) element-wise.
649
650 See Also
651 --------
652 greater
653 """
654 return greater(self, other)
655
656 def __lt__(self, other):
657 """

Calls 1

greaterFunction · 0.85

Tested by 1