NUMPY_API * Copy an Array into another array. * Broadcast to the destination shape if necessary. * * Returns 0 on success, -1 on failure. */
| 2770 | * Returns 0 on success, -1 on failure. |
| 2771 | */ |
| 2772 | NPY_NO_EXPORT int |
| 2773 | PyArray_CopyInto(PyArrayObject *dst, PyArrayObject *src) |
| 2774 | { |
| 2775 | return PyArray_AssignArray(dst, src, NULL, NPY_UNSAFE_CASTING); |
| 2776 | } |
| 2777 | |
| 2778 | /*NUMPY_API |
| 2779 | * Move the memory of one array into another, allowing for overlapping data. |
no test coverage detected