NUMPY_API * Allocate a new iterator for more than one array object, using * standard NumPy broadcasting rules and the default buffer size. */
| 524 | * standard NumPy broadcasting rules and the default buffer size. |
| 525 | */ |
| 526 | NPY_NO_EXPORT NpyIter * |
| 527 | NpyIter_MultiNew(int nop, PyArrayObject **op_in, npy_uint32 flags, |
| 528 | NPY_ORDER order, NPY_CASTING casting, |
| 529 | npy_uint32 *op_flags, |
| 530 | PyArray_Descr **op_request_dtypes) |
| 531 | { |
| 532 | return NpyIter_AdvancedNew(nop, op_in, flags, order, casting, |
| 533 | op_flags, op_request_dtypes, |
| 534 | -1, NULL, NULL, 0); |
| 535 | } |
| 536 | |
| 537 | /*NUMPY_API |
| 538 | * Allocate a new iterator for one array object. |
no test coverage detected