NUMPY_API * * Use advanced indexing to iterate an array. */
| 3413 | * Use advanced indexing to iterate an array. |
| 3414 | */ |
| 3415 | NPY_NO_EXPORT PyObject * |
| 3416 | PyArray_MapIterArray(PyArrayObject * a, PyObject * index) |
| 3417 | { |
| 3418 | return PyArray_MapIterArrayCopyIfOverlap(a, index, 0, NULL); |
| 3419 | } |
| 3420 | |
| 3421 | |
| 3422 | #undef HAS_INTEGER |
nothing calls this directly
no test coverage detected