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

Method __le__

numpy/lib/_user_array_impl.py:234–235  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

232 return self._rc(less(self.array, other))
233
234 def __le__(self, other):
235 return self._rc(less_equal(self.array, other))
236
237 def __eq__(self, other):
238 return self._rc(equal(self.array, other))

Callers

nothing calls this directly

Calls 2

_rcMethod · 0.95
less_equalFunction · 0.90

Tested by

no test coverage detected