(&mut self, is_valid: bool)
| 196 | /// Panics if the length of [`Self::values`] exceeds `OffsetSize::MAX` |
| 197 | #[inline] |
| 198 | pub fn append(&mut self, is_valid: bool) { |
| 199 | self.offsets_builder.push(self.next_offset()); |
| 200 | self.null_buffer_builder.append(is_valid); |
| 201 | } |
| 202 | |
| 203 | /// Returns the next offset |
| 204 | /// |