Returns the number of binary slots in the builder
(&self)
| 267 | impl<T: ByteArrayType> ArrayBuilder for GenericByteBuilder<T> { |
| 268 | /// Returns the number of binary slots in the builder |
| 269 | fn len(&self) -> usize { |
| 270 | self.null_buffer_builder.len() |
| 271 | } |
| 272 | |
| 273 | /// Builds the array and reset this builder. |
| 274 | fn finish(&mut self) -> ArrayRef { |
no outgoing calls