(&mut self)
| 133 | /// to indicate that this item is null. |
| 134 | #[inline] |
| 135 | pub fn append_null(&mut self) { |
| 136 | self.materialize_if_needed(); |
| 137 | self.bitmap_builder.as_mut().unwrap().append(false); |
| 138 | } |
| 139 | |
| 140 | /// Appends a boolean value into the builder. |
| 141 | #[inline] |