(&mut self, v: &[T::Native])
| 240 | /// Appends a slice of type `T` into the builder |
| 241 | #[inline] |
| 242 | pub fn append_slice(&mut self, v: &[T::Native]) { |
| 243 | self.null_buffer_builder.append_n_non_nulls(v.len()); |
| 244 | self.values_builder.extend_from_slice(v); |
| 245 | } |
| 246 | |
| 247 | /// Appends values from a slice of type `T` and a validity boolean slice |
| 248 | /// |