(&mut self, value: impl AsRef<T::Native>)
| 104 | /// [`BinaryArray`]: crate::BinaryArray |
| 105 | #[inline] |
| 106 | pub fn append_value(&mut self, value: impl AsRef<T::Native>) { |
| 107 | self.value_builder |
| 108 | .extend_from_slice(value.as_ref().as_ref()); |
| 109 | self.null_buffer_builder.append(true); |
| 110 | self.offsets_builder.push(self.next_offset()); |
| 111 | } |
| 112 | |
| 113 | /// Appends a value of type `T` into the builder `n` times. |
| 114 | /// |