RowIterator =========== .. cpp:class:: numpy::RowIterator numpy C++ class. Example ------- .. code-block:: cpp #include using namespace numpy; // Use RowIterator NDArray arr = np::arange(12).reshape({3, 4}); for (auto it = arr.begin(); it != arr.end(); ++it) { // ... process elements ... } Constructors ------------ .. list-table:: :widths: 55 25 20 :header-rows: 1 * - Signature - Location - Example * - ``RowIterator(const DataFrame\* df, size_t pos)`` - df_dataframe.h:1085 -