NUMPY_API * Whether the iterator handles the inner loop */
| 735 | * Whether the iterator handles the inner loop |
| 736 | */ |
| 737 | NPY_NO_EXPORT npy_bool |
| 738 | NpyIter_HasExternalLoop(NpyIter *iter) |
| 739 | { |
| 740 | return (NIT_ITFLAGS(iter)&NPY_ITFLAG_EXLOOP) != 0; |
| 741 | } |
| 742 | |
| 743 | /*NUMPY_API |
| 744 | * Whether the iterator is tracking a multi-index |
no outgoing calls
no test coverage detected