(&mut self, n: usize)
| 232 | /// Appends `n` `null`s into the builder. |
| 233 | #[inline] |
| 234 | pub fn append_nulls(&mut self, n: usize) { |
| 235 | self.null_buffer_builder.append_n_nulls(n); |
| 236 | } |
| 237 | |
| 238 | /// Builds the `StructArray` and reset this builder. |
| 239 | pub fn finish(&mut self) -> StructArray { |