ColumnIterator ============== .. cpp:class:: numpy::ColumnIterator numpy C++ class. Example ------- .. code-block:: cpp #include using namespace numpy; // Use ColumnIterator 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 * - ``ColumnIterator(const Index\* columns_index, size_t pos)`` - df_dataframe.h:840 -