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

Method __ror__

numpy/lib/user_array.py:169–170  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

167 return self._rc(bitwise_or(self.array, other))
168
169 def __ror__(self, other):
170 return self._rc(bitwise_or(other, self.array))
171
172 def __ior__(self, other):
173 bitwise_or(self.array, other, self.array)

Callers

nothing calls this directly

Calls 2

_rcMethod · 0.95
bitwise_orFunction · 0.85

Tested by

no test coverage detected