NUMPY_API * Gets the range of iteration indices being iterated */
| 956 | * Gets the range of iteration indices being iterated |
| 957 | */ |
| 958 | NPY_NO_EXPORT void |
| 959 | NpyIter_GetIterIndexRange(NpyIter *iter, |
| 960 | npy_intp *istart, npy_intp *iend) |
| 961 | { |
| 962 | *istart = NIT_ITERSTART(iter); |
| 963 | *iend = NIT_ITEREND(iter); |
| 964 | } |
| 965 | |
| 966 | /*NUMPY_API |
| 967 | * Gets the broadcast shape if a multi-index is being tracked by the iterator, |
no outgoing calls
no test coverage detected