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

Function array_inplace_subtract

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

Source from the content-addressed store, hash-verified

699}
700
701static PyObject *
702array_inplace_subtract(PyArrayObject *m1, PyObject *m2)
703{
704 INPLACE_GIVE_UP_IF_NEEDED(
705 m1, m2, nb_inplace_subtract, array_inplace_subtract);
706 return PyArray_GenericInplaceBinaryFunction(m1, m2, n_ops.subtract);
707}
708
709static PyObject *
710array_inplace_multiply(PyArrayObject *m1, PyObject *m2)

Callers

nothing calls this directly

Tested by

no test coverage detected