(&self)
| 89 | } |
| 90 | |
| 91 | fn iter(&self) -> impl Iterator<Item = (&RowRef, NonZeroUsize)> { |
| 92 | self.rows.iter().zip_eq(self.diffs.iter().copied()) |
| 93 | } |
| 94 | |
| 95 | /// Concatenate another [`RowCollection`] onto `self`, copying and reallocating both sets of rows. |
| 96 | /// |
no outgoing calls