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

Method __le__

numpy/_core/defchararray.py:636–644  ·  view source on GitHub ↗

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

(self, other)

Source from the content-addressed store, hash-verified

634 return greater_equal(self, other)
635
636 def __le__(self, other):
637 """
638 Return (self <= other) element-wise.
639
640 See Also
641 --------
642 less_equal
643 """
644 return less_equal(self, other)
645
646 def __gt__(self, other):
647 """

Calls 1

less_equalFunction · 0.85

Tested by 1