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

Function array_inplace_left_shift

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

Source from the content-addressed store, hash-verified

737}
738
739static PyObject *
740array_inplace_left_shift(PyArrayObject *m1, PyObject *m2)
741{
742 INPLACE_GIVE_UP_IF_NEEDED(
743 m1, m2, nb_inplace_lshift, array_inplace_left_shift);
744 return PyArray_GenericInplaceBinaryFunction(m1, m2, n_ops.left_shift);
745}
746
747static PyObject *
748array_inplace_right_shift(PyArrayObject *m1, PyObject *m2)

Callers

nothing calls this directly

Tested by

no test coverage detected