| 2633 | * Returns -1 on error. |
| 2634 | */ |
| 2635 | NPY_NO_EXPORT NPY_GCC_OPT_3 npy_intp |
| 2636 | count_boolean_trues(int ndim, char *data, npy_intp const *ashape, npy_intp const *astrides) |
| 2637 | { |
| 2638 | return count_nonzero_int(ndim, data, ashape, astrides, 1); |
| 2639 | } |
| 2640 | |
| 2641 | /*NUMPY_API |
| 2642 | * Counts the number of non-zero elements in the array. |
no test coverage detected