NUMPY_API * Whether the iterator is tracking an index */
| 753 | * Whether the iterator is tracking an index |
| 754 | */ |
| 755 | NPY_NO_EXPORT npy_bool |
| 756 | NpyIter_HasIndex(NpyIter *iter) |
| 757 | { |
| 758 | return (NIT_ITFLAGS(iter)&NPY_ITFLAG_HASINDEX) != 0; |
| 759 | } |
| 760 | |
| 761 | /*NUMPY_API |
| 762 | * Checks to see whether this is the first time the elements |
no outgoing calls
no test coverage detected