(&mut self, n: usize)
| 220 | /// Appends `n` non-null entries into the builder. |
| 221 | #[inline] |
| 222 | pub fn append_non_nulls(&mut self, n: usize) { |
| 223 | self.null_buffer_builder.append_n_non_nulls(n); |
| 224 | } |
| 225 | |
| 226 | /// Appends a null element to the struct. |
| 227 | #[inline] |