(&mut self, n: usize)
| 80 | /// Appends `n` `null`s into the builder. |
| 81 | #[inline] |
| 82 | pub fn append_empty_values(&mut self, n: usize) { |
| 83 | self.append_nulls(n); |
| 84 | } |
| 85 | |
| 86 | /// Builds the [NullArray] and reset this builder. |
| 87 | pub fn finish(&mut self) -> NullArray { |