(&mut self, n: usize)
| 103 | /// to indicate that these `n` items are not nulls. |
| 104 | #[inline] |
| 105 | pub fn append_n_non_nulls(&mut self, n: usize) { |
| 106 | if let Some(buf) = self.bitmap_builder.as_mut() { |
| 107 | buf.append_n(n, true) |
| 108 | } else { |
| 109 | self.len += n; |
| 110 | } |
| 111 | } |
| 112 | |
| 113 | /// Appends a `true` into the builder |
| 114 | /// to indicate that this item is not null. |