NUMPY_API * Whether the iterator is buffered */
| 918 | * Whether the iterator is buffered |
| 919 | */ |
| 920 | NPY_NO_EXPORT npy_bool |
| 921 | NpyIter_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 |
no outgoing calls
no test coverage detected