(&mut self, v: &[bool])
| 119 | /// Appends a slice of type `T` into the builder |
| 120 | #[inline] |
| 121 | pub fn append_slice(&mut self, v: &[bool]) { |
| 122 | self.values_builder.append_slice(v); |
| 123 | self.null_buffer_builder.append_n_non_nulls(v.len()); |
| 124 | } |
| 125 | |
| 126 | /// Appends n `additional` bits of value `v` into the buffer |
| 127 | #[inline] |