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

Function array_inplace_bitwise_and

numpy/core/src/multiarray/number.c:755–761  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

753}
754
755static PyObject *
756array_inplace_bitwise_and(PyArrayObject *m1, PyObject *m2)
757{
758 INPLACE_GIVE_UP_IF_NEEDED(
759 m1, m2, nb_inplace_and, array_inplace_bitwise_and);
760 return PyArray_GenericInplaceBinaryFunction(m1, m2, n_ops.bitwise_and);
761}
762
763static PyObject *
764array_inplace_bitwise_or(PyArrayObject *m1, PyObject *m2)

Callers

nothing calls this directly

Tested by

no test coverage detected