* Fetch the ArrayMethod (runtime) flags for all "transfer functions' (i.e. * copy to buffer/casts). * * TODO: This should be public API, but that only makes sense when the * ArrayMethod API is made public. */
| 881 | * ArrayMethod API is made public. |
| 882 | */ |
| 883 | NPY_NO_EXPORT int |
| 884 | NpyIter_GetTransferFlags(NpyIter *iter) |
| 885 | { |
| 886 | return NIT_ITFLAGS(iter) >> NPY_ITFLAG_TRANSFERFLAGS_SHIFT; |
| 887 | } |
| 888 | |
| 889 | |
| 890 | /*NUMPY_API |
no outgoing calls
no test coverage detected