MCPcopy Create free account
hub / github.com/numpy/numpy / NpyIter_HasMultiIndex

Function NpyIter_HasMultiIndex

numpy/core/src/multiarray/nditer_api.c:746–750  ·  view source on GitHub ↗

NUMPY_API * Whether the iterator is tracking a multi-index */

Source from the content-addressed store, hash-verified

744 * Whether the iterator is tracking a multi-index
745 */
746NPY_NO_EXPORT npy_bool
747NpyIter_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

Callers 6

npyiter_cache_valuesFunction · 0.85
npyiter_resetFunction · 0.85
npyiter_multi_index_getFunction · 0.85
npyiter_multi_index_setFunction · 0.85
npyiter_iterrange_setFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected