(&mut self)
| 96 | /// Appends a null slot into the builder |
| 97 | #[inline] |
| 98 | pub fn append_null(&mut self) { |
| 99 | self.null_buffer_builder.append_null(); |
| 100 | self.values_builder.advance(1); |
| 101 | } |
| 102 | |
| 103 | /// Appends `n` `null`s into the builder. |
| 104 | #[inline] |