NUMPY_API * Whether the iterator is tracking a multi-index */
| 744 | * Whether the iterator is tracking a multi-index |
| 745 | */ |
| 746 | NPY_NO_EXPORT npy_bool |
| 747 | NpyIter_HasMultiIndex(NpyIter *iter) |
| 748 | { |
| 749 | return (NIT_ITFLAGS(iter)&NPY_ITFLAG_HASMULTIINDEX) != 0; |
| 750 | } |
| 751 | |
| 752 | /*NUMPY_API |
| 753 | * Whether the iterator is tracking an index |
no outgoing calls
no test coverage detected