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

Function NpyIter_HasIndex

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

NUMPY_API * Whether the iterator is tracking an index */

Source from the content-addressed store, hash-verified

753 * Whether the iterator is tracking an index
754 */
755NPY_NO_EXPORT npy_bool
756NpyIter_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

Callers 3

npyiter_index_getFunction · 0.85
npyiter_index_setFunction · 0.85
npyiter_has_index_getFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected