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

Method __or__

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

Source from the content-addressed store, hash-verified

164 return self
165
166 def __or__(self, other):
167 return self._rc(bitwise_or(self.array, other))
168
169 def __ror__(self, other):
170 return self._rc(bitwise_or(other, self.array))

Callers

nothing calls this directly

Calls 2

_rcMethod · 0.95
bitwise_orFunction · 0.85

Tested by

no test coverage detected