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

Function NpyIter_MultiNew

numpy/core/src/multiarray/nditer_constr.c:526–535  ·  view source on GitHub ↗

NUMPY_API * Allocate a new iterator for more than one array object, using * standard NumPy broadcasting rules and the default buffer size. */

Source from the content-addressed store, hash-verified

524 * standard NumPy broadcasting rules and the default buffer size.
525 */
526NPY_NO_EXPORT NpyIter *
527NpyIter_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.

Callers 10

array_datetime_as_stringFunction · 0.85
business_day_offsetFunction · 0.85
business_day_countFunction · 0.85
is_business_dayFunction · 0.85
PyArray_WhereFunction · 0.85
arr_ravel_multi_indexFunction · 0.85
array_boolean_subscriptFunction · 0.85
PyArray_MapIterNewFunction · 0.85
array_richcompareFunction · 0.85

Calls 1

NpyIter_AdvancedNewFunction · 0.85

Tested by

no test coverage detected