(&mut self)
| 480 | /// Append a null value into the builder |
| 481 | #[inline] |
| 482 | pub fn append_null(&mut self) { |
| 483 | self.null_buffer_builder.append_null(); |
| 484 | self.views_buffer.push(0); |
| 485 | } |
| 486 | |
| 487 | /// Builds the [`GenericByteViewArray`] and reset this builder |
| 488 | pub fn finish(&mut self) -> GenericByteViewArray<T> { |