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

Method __ior__

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

Source from the content-addressed store, hash-verified

170 return self._rc(bitwise_or(other, self.array))
171
172 def __ior__(self, other):
173 bitwise_or(self.array, other, self.array)
174 return self
175
176 def __pos__(self):
177 return self._rc(self.array)

Callers

nothing calls this directly

Calls 1

bitwise_orFunction · 0.85

Tested by

no test coverage detected