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

Function NpyIter_HasExternalLoop

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

NUMPY_API * Whether the iterator handles the inner loop */

Source from the content-addressed store, hash-verified

735 * Whether the iterator handles the inner loop
736 */
737NPY_NO_EXPORT npy_bool
738NpyIter_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

Callers 3

npyiter_cache_valuesFunction · 0.85
npyiter_seq_itemFunction · 0.85
npyiter_seq_ass_itemFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected