(&mut self, n: usize)
| 348 | /// Infallibly append `n` null slots into the builder |
| 349 | #[inline] |
| 350 | pub fn append_nulls(&mut self, n: usize) { |
| 351 | self.keys_builder.append_nulls(n) |
| 352 | } |
| 353 | |
| 354 | /// Append an `Option` value into the builder |
| 355 | /// |
no outgoing calls