(&mut self, v: T::Native)
| 202 | /// Appends a value of type `T` into the builder |
| 203 | #[inline] |
| 204 | pub fn append_value(&mut self, v: T::Native) { |
| 205 | self.null_buffer_builder.append_non_null(); |
| 206 | self.values_builder.push(v); |
| 207 | } |
| 208 | |
| 209 | /// Appends a value of type `T` into the builder `n` times |
| 210 | #[inline] |