The ColumnDataRowCollection represents a set of materialized rows, as obtained from the ColumnDataCollection.
More...
#include <duckdb.hpp>
The ColumnDataRowCollection represents a set of materialized rows, as obtained from the ColumnDataCollection.
◆ empty()
| bool duckdb::ColumnDataRowCollection::empty |
( |
| ) |
const |
|
inline |
19155 {
19156 return rows.empty();
19157 }
◆ size()
| idx_t duckdb::ColumnDataRowCollection::size |
( |
| ) |
const |
|
inline |
19158 {
19159 return rows.size();
19160 }
◆ begin() [1/2]
19165 {
19166 return rows.begin();
19167 }
◆ end() [1/2]
19168 {
19169 return rows.end();
19170 }
◆ cbegin()
19171 {
19172 return rows.cbegin();
19173 }
◆ cend()
19174 {
19175 return rows.cend();
19176 }
◆ begin() [2/2]
19177 {
19178 return rows.begin();
19179 }
◆ end() [2/2]
19180 {
19181 return rows.end();
19182 }
The documentation for this class was generated from the following file: