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

Function array_inplace_add

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

Source from the content-addressed store, hash-verified

691}
692
693static PyObject *
694array_inplace_add(PyArrayObject *m1, PyObject *m2)
695{
696 INPLACE_GIVE_UP_IF_NEEDED(
697 m1, m2, nb_inplace_add, array_inplace_add);
698 return PyArray_GenericInplaceBinaryFunction(m1, m2, n_ops.add);
699}
700
701static PyObject *
702array_inplace_subtract(PyArrayObject *m1, PyObject *m2)

Callers

nothing calls this directly

Tested by

no test coverage detected