(&mut self, v: bool)
| 89 | /// Appends a value of type `T` into the builder |
| 90 | #[inline] |
| 91 | pub fn append_value(&mut self, v: bool) { |
| 92 | self.values_builder.append(v); |
| 93 | self.null_buffer_builder.append_non_null(); |
| 94 | } |
| 95 | |
| 96 | /// Appends a null slot into the builder |
| 97 | #[inline] |