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

Function NpyIter_IsBuffered

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

NUMPY_API * Whether the iterator is buffered */

Source from the content-addressed store, hash-verified

918 * Whether the iterator is buffered
919 */
920NPY_NO_EXPORT npy_bool
921NpyIter_IsBuffered(NpyIter *iter)
922{
923 return (NIT_ITFLAGS(iter)&NPY_ITFLAG_BUFFER) != 0;
924}
925
926/*NUMPY_API
927 * Whether the inner loop can grow if buffering is unneeded

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected