Struct arrow_array::builder::PrimitiveBuilder
source · pub struct PrimitiveBuilder<T: ArrowPrimitiveType> { /* private fields */ }
Expand description
Array builder for fixed-width primitive types
Implementations
sourceimpl<T: ArrowPrimitiveType> PrimitiveBuilder<T>
impl<T: ArrowPrimitiveType> PrimitiveBuilder<T>
sourcepub fn with_capacity(capacity: usize) -> Self
pub fn with_capacity(capacity: usize) -> Self
Creates a new primitive array builder with capacity no of items
sourcepub fn capacity(&self) -> usize
pub fn capacity(&self) -> usize
Returns the capacity of this builder measured in slots of type T
sourcepub fn append_value(&mut self, v: T::Native)
pub fn append_value(&mut self, v: T::Native)
Appends a value of type T
into the builder
sourcepub fn append_null(&mut self)
pub fn append_null(&mut self)
Appends a null slot into the builder
pub fn append_nulls(&mut self, n: usize)
sourcepub fn append_option(&mut self, v: Option<T::Native>)
pub fn append_option(&mut self, v: Option<T::Native>)
Appends an Option<T>
into the builder
sourcepub fn append_slice(&mut self, v: &[T::Native])
pub fn append_slice(&mut self, v: &[T::Native])
Appends a slice of type T
into the builder
sourcepub fn append_values(&mut self, values: &[T::Native], is_valid: &[bool])
pub fn append_values(&mut self, values: &[T::Native], is_valid: &[bool])
Appends values from a slice of type T
and a validity boolean slice
sourcepub unsafe fn append_trusted_len_iter(
&mut self,
iter: impl IntoIterator<Item = T::Native>
)
pub unsafe fn append_trusted_len_iter(
&mut self,
iter: impl IntoIterator<Item = T::Native>
)
Appends values from a trusted length iterator.
Safety
This requires the iterator be a trusted length. This could instead require
the iterator implement TrustedLen
once that is stabilized.
sourcepub fn finish(&mut self) -> PrimitiveArray<T>
pub fn finish(&mut self) -> PrimitiveArray<T>
Builds the PrimitiveArray
and reset this builder.
sourcepub fn values_slice(&self) -> &[T::Native]
pub fn values_slice(&self) -> &[T::Native]
Returns the current values buffer as a slice
Trait Implementations
sourceimpl<T: ArrowPrimitiveType> ArrayBuilder for PrimitiveBuilder<T>
impl<T: ArrowPrimitiveType> ArrayBuilder for PrimitiveBuilder<T>
sourcefn as_any_mut(&mut self) -> &mut dyn Any
fn as_any_mut(&mut self) -> &mut dyn Any
Returns the builder as a mutable Any
reference.
sourcefn into_box_any(self: Box<Self>) -> Box<dyn Any>
fn into_box_any(self: Box<Self>) -> Box<dyn Any>
Returns the boxed builder as a box of Any
.