RowIterator#

class numpy::RowIterator#

numpy C++ class.

Example#

#include <numpy/np_ndarray.h>
using namespace numpy;

// Use RowIterator
NDArray<double> arr = np::arange<double>(12).reshape({3, 4});
for (auto it = arr.begin(); it != arr.end(); ++it) {
    // ... process elements ...
}

Constructors#

Signature

Location

Example

RowIterator(const DataFrame\* df, size_t pos)

df_dataframe.h:1085