Returns the number of array slots in the builder. Note that this always return the first child field builder's length, and it is the caller's responsibility to maintain the consistency that all the child field builder should have the equal number of elements.
(&self)
| 122 | /// the caller's responsibility to maintain the consistency that all the child field |
| 123 | /// builder should have the equal number of elements. |
| 124 | fn len(&self) -> usize { |
| 125 | self.null_buffer_builder.len() |
| 126 | } |
| 127 | |
| 128 | /// Builds the array. |
| 129 | fn finish(&mut self) -> ArrayRef { |
no outgoing calls