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

Function array_inplace_bitwise_xor

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

Source from the content-addressed store, hash-verified

769}
770
771static PyObject *
772array_inplace_bitwise_xor(PyArrayObject *m1, PyObject *m2)
773{
774 INPLACE_GIVE_UP_IF_NEEDED(
775 m1, m2, nb_inplace_xor, array_inplace_bitwise_xor);
776 return PyArray_GenericInplaceBinaryFunction(m1, m2, n_ops.bitwise_xor);
777}
778
779static PyObject *
780array_floor_divide(PyObject *m1, PyObject *m2)

Callers

nothing calls this directly

Tested by

no test coverage detected