Rows¶
An ordered collection of Row values from a query result. Supports indexed
access via apply() and iteration via values().
Implements¶
Constructors¶
create¶
Parameters¶
Returns¶
- Rows val^
Public Functions¶
size¶
Returns the number of rows.
Returns¶
- USize val
apply¶
Returns the ith row if it exists. Otherwise, throws an error.
Parameters¶
- i: USize val
Returns¶
- Row val ?
eq¶
Two Rows are equal when they have the same number of rows and each corresponding pair of rows is equal. Row order matters: the same rows in a different order are not equal.
Parameters¶
- that: Rows val
Returns¶
- Bool val
values¶
Returns an iterator over the rows.
Returns¶
- RowIterator ref
ne¶
Parameters¶
- that: Rows val
Returns¶
- Bool val