(&mut self)
| 114 | /// to indicate that this item is not null. |
| 115 | #[inline] |
| 116 | pub fn append_non_null(&mut self) { |
| 117 | if let Some(buf) = self.bitmap_builder.as_mut() { |
| 118 | buf.append(true) |
| 119 | } else { |
| 120 | self.len += 1; |
| 121 | } |
| 122 | } |
| 123 | |
| 124 | /// Appends `n` `false`s into the builder |
| 125 | /// to indicate that these `n` items are nulls. |