(&mut self)
| 216 | /// Appends a null slot into the builder |
| 217 | #[inline] |
| 218 | pub fn append_null(&mut self) { |
| 219 | self.null_buffer_builder.append_null(); |
| 220 | self.values_builder.push(T::Native::default()); |
| 221 | } |
| 222 | |
| 223 | /// Appends `n` no. of null's into the builder |
| 224 | #[inline] |