(&mut self, n: usize)
| 344 | /// Append `n` null slots into the builder |
| 345 | #[inline] |
| 346 | pub fn append_nulls(&mut self, n: usize) { |
| 347 | self.keys_builder.append_nulls(n) |
| 348 | } |
| 349 | |
| 350 | /// Append an `Option` value into the builder |
| 351 | /// |
no outgoing calls