NUMPY_API * Whether the buffer allocation is being delayed */
| 726 | * Whether the buffer allocation is being delayed |
| 727 | */ |
| 728 | NPY_NO_EXPORT npy_bool |
| 729 | NpyIter_HasDelayedBufAlloc(NpyIter *iter) |
| 730 | { |
| 731 | return (NIT_ITFLAGS(iter)&NPY_ITFLAG_DELAYBUF) != 0; |
| 732 | } |
| 733 | |
| 734 | /*NUMPY_API |
| 735 | * Whether the iterator handles the inner loop |
no outgoing calls
no test coverage detected