TupleIterator ============= .. cpp:class:: numpy::TupleIterator numpy C++ class. Example ------- .. code-block:: cpp #include using namespace numpy; // Use TupleIterator 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 * - ``TupleIterator(const DataFrame\* df, size_t pos, bool include_index, const std::string& name)`` - df_dataframe.h:1291 -