Struct polars_arrow::array::MutableFixedSizeListArray
source · pub struct MutableFixedSizeListArray<M: MutableArray> { /* private fields */ }
Expand description
The mutable version of FixedSizeListArray
.
Implementations§
source§impl<M: MutableArray> MutableFixedSizeListArray<M>
impl<M: MutableArray> MutableFixedSizeListArray<M>
sourcepub fn new(values: M, size: usize) -> Self
pub fn new(values: M, size: usize) -> Self
Creates a new MutableFixedSizeListArray
from a MutableArray
and size.
sourcepub fn new_with_field(
values: M,
name: &str,
nullable: bool,
size: usize
) -> Self
pub fn new_with_field( values: M, name: &str, nullable: bool, size: usize ) -> Self
Creates a new MutableFixedSizeListArray
from a MutableArray
and size.
sourcepub fn new_from(values: M, data_type: ArrowDataType, size: usize) -> Self
pub fn new_from(values: M, data_type: ArrowDataType, size: usize) -> Self
Creates a new MutableFixedSizeListArray
from a MutableArray
, ArrowDataType
and size.
sourcepub const fn size(&self) -> usize
pub const fn size(&self) -> usize
Returns the size (number of elements per slot) of this FixedSizeListArray
.
sourcepub fn mut_values(&mut self) -> &mut M
pub fn mut_values(&mut self) -> &mut M
The values as a mutable reference
sourcepub fn try_push_valid(&mut self) -> PolarsResult<()>
pub fn try_push_valid(&mut self) -> PolarsResult<()>
Needs to be called when a valid value was extended to this array.
This is a relatively low level function, prefer try_push
when you can.
sourcepub fn push_valid(&mut self)
pub fn push_valid(&mut self)
Needs to be called when a valid value was extended to this array.
This is a relatively low level function, prefer try_push
when you can.
sourcepub fn shrink_to_fit(&mut self)
pub fn shrink_to_fit(&mut self)
Shrinks the capacity of the MutableFixedSizeListArray
to fit its current length.
Trait Implementations§
source§impl<M: Clone + MutableArray> Clone for MutableFixedSizeListArray<M>
impl<M: Clone + MutableArray> Clone for MutableFixedSizeListArray<M>
source§fn clone(&self) -> MutableFixedSizeListArray<M>
fn clone(&self) -> MutableFixedSizeListArray<M>
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl<M: Debug + MutableArray> Debug for MutableFixedSizeListArray<M>
impl<M: Debug + MutableArray> Debug for MutableFixedSizeListArray<M>
source§impl<M: MutableArray> From<MutableFixedSizeListArray<M>> for FixedSizeListArray
impl<M: MutableArray> From<MutableFixedSizeListArray<M>> for FixedSizeListArray
source§fn from(other: MutableFixedSizeListArray<M>) -> Self
fn from(other: MutableFixedSizeListArray<M>) -> Self
source§impl<M: MutableArray + 'static> MutableArray for MutableFixedSizeListArray<M>
impl<M: MutableArray + 'static> MutableArray for MutableFixedSizeListArray<M>
source§fn validity(&self) -> Option<&MutableBitmap>
fn validity(&self) -> Option<&MutableBitmap>
source§fn as_arc(&mut self) -> Arc<dyn Array>
fn as_arc(&mut self) -> Arc<dyn Array>
Array
.source§fn data_type(&self) -> &ArrowDataType
fn data_type(&self) -> &ArrowDataType
ArrowDataType
of the array.source§fn as_mut_any(&mut self) -> &mut dyn Any
fn as_mut_any(&mut self) -> &mut dyn Any
Any
, to enable dynamic casting.source§fn shrink_to_fit(&mut self)
fn shrink_to_fit(&mut self)
source§impl<M, I, T> PushUnchecked<Option<I>> for MutableFixedSizeListArray<M>
impl<M, I, T> PushUnchecked<Option<I>> for MutableFixedSizeListArray<M>
source§unsafe fn push_unchecked(&mut self, item: Option<I>)
unsafe fn push_unchecked(&mut self, item: Option<I>)
§Safety
The caller must ensure that the I
iterates exactly over size
items, where size
is the fixed size width.
source§impl<M, I, T> TryExtend<Option<I>> for MutableFixedSizeListArray<M>
impl<M, I, T> TryExtend<Option<I>> for MutableFixedSizeListArray<M>
source§fn try_extend<II: IntoIterator<Item = Option<I>>>(
&mut self,
iter: II
) -> PolarsResult<()>
fn try_extend<II: IntoIterator<Item = Option<I>>>( &mut self, iter: II ) -> PolarsResult<()>
Extend::extend
.source§impl<M> TryExtendFromSelf for MutableFixedSizeListArray<M>where
M: MutableArray + TryExtendFromSelf,
impl<M> TryExtendFromSelf for MutableFixedSizeListArray<M>where
M: MutableArray + TryExtendFromSelf,
source§fn try_extend_from_self(&mut self, other: &Self) -> PolarsResult<()>
fn try_extend_from_self(&mut self, other: &Self) -> PolarsResult<()>
other
, failing only on overflow.