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

Method __iand__

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

Source from the content-addressed store, hash-verified

150 return self._rc(bitwise_and(other, self.array))
151
152 def __iand__(self, other):
153 bitwise_and(self.array, other, self.array)
154 return self
155
156 def __xor__(self, other):
157 return self._rc(bitwise_xor(self.array, other))

Callers

nothing calls this directly

Calls 1

bitwise_andFunction · 0.85

Tested by

no test coverage detected