(&mut self, v: T::Native, n: usize)
| 209 | /// Appends a value of type `T` into the builder `n` times |
| 210 | #[inline] |
| 211 | pub fn append_value_n(&mut self, v: T::Native, n: usize) { |
| 212 | self.null_buffer_builder.append_n_non_nulls(n); |
| 213 | self.values_builder.extend(std::iter::repeat_n(v, n)); |
| 214 | } |
| 215 | |
| 216 | /// Appends a null slot into the builder |
| 217 | #[inline] |
no test coverage detected