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

Function array_inplace_right_shift

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

Source from the content-addressed store, hash-verified

745}
746
747static PyObject *
748array_inplace_right_shift(PyArrayObject *m1, PyObject *m2)
749{
750 INPLACE_GIVE_UP_IF_NEEDED(
751 m1, m2, nb_inplace_rshift, array_inplace_right_shift);
752 return PyArray_GenericInplaceBinaryFunction(m1, m2, n_ops.right_shift);
753}
754
755static PyObject *
756array_inplace_bitwise_and(PyArrayObject *m1, PyObject *m2)

Callers

nothing calls this directly

Tested by

no test coverage detected