(&mut self, n: usize)
| 125 | /// to indicate that these `n` items are nulls. |
| 126 | #[inline] |
| 127 | pub fn append_n_nulls(&mut self, n: usize) { |
| 128 | self.materialize_if_needed(); |
| 129 | self.bitmap_builder.as_mut().unwrap().append_n(n, false); |
| 130 | } |
| 131 | |
| 132 | /// Appends a `false` into the builder |
| 133 | /// to indicate that this item is null. |