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

Function NpyIter_GetDescrArray

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

NUMPY_API * Get the array of data type pointers (1 per object being iterated) */

Source from the content-addressed store, hash-verified

1127 * Get the array of data type pointers (1 per object being iterated)
1128 */
1129NPY_NO_EXPORT PyArray_Descr **
1130NpyIter_GetDescrArray(NpyIter *iter)
1131{
1132 /*npy_uint32 itflags = NIT_ITFLAGS(iter);*/
1133 /*int ndim = NIT_NDIM(iter);*/
1134 /*int nop = NIT_NOP(iter);*/
1135
1136 return NIT_DTYPES(iter);
1137}
1138
1139/*NUMPY_API
1140 * Get the array of objects being iterated

Callers 2

npyiter_cache_valuesFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected