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

Method __le__

numpy/core/defchararray.py:2150–2158  ·  view source on GitHub ↗

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

(self, other)

Source from the content-addressed store, hash-verified

2148 return greater_equal(self, other)
2149
2150 def __le__(self, other):
2151 """
2152 Return (self <= other) element-wise.
2153
2154 See Also
2155 --------
2156 less_equal
2157 """
2158 return less_equal(self, other)
2159
2160 def __gt__(self, other):
2161 """

Calls 1

less_equalFunction · 0.70

Tested by 1