(&mut self)
| 142 | /// Append a null value into the builder. |
| 143 | #[inline] |
| 144 | pub fn append_null(&mut self) { |
| 145 | self.null_buffer_builder.append(false); |
| 146 | self.offsets_builder.push(self.next_offset()); |
| 147 | } |
| 148 | |
| 149 | /// Appends `n` `null`s into the builder. |
| 150 | #[inline] |