pub fn make_builder(
    datatype: &DataType,
    capacity: usize
) -> Box<dyn ArrayBuilder>
Expand description

Returns a builder with capacity capacity that corresponds to the datatype DataType This function is useful to construct arrays from an arbitrary vectors with known/expected schema.