(&mut self, n: usize)
| 103 | /// Appends `n` `null`s into the builder. |
| 104 | #[inline] |
| 105 | pub fn append_nulls(&mut self, n: usize) { |
| 106 | self.null_buffer_builder.append_n_nulls(n); |
| 107 | self.values_builder.advance(n); |
| 108 | } |
| 109 | |
| 110 | /// Appends an `Option<T>` into the builder |
| 111 | #[inline] |
nothing calls this directly
no test coverage detected