Struct polars::datatypes::FixedSizeListType
source · pub struct FixedSizeListType {}
Available on crate feature
dtype-array
only.Trait Implementations§
source§impl ChunkExpandAtIndex<FixedSizeListType> for ChunkedArray<FixedSizeListType>
impl ChunkExpandAtIndex<FixedSizeListType> for ChunkedArray<FixedSizeListType>
source§fn new_from_index(
&self,
index: usize,
length: usize
) -> ChunkedArray<FixedSizeListType>
fn new_from_index( &self, index: usize, length: usize ) -> ChunkedArray<FixedSizeListType>
Create a new ChunkedArray filled with values at that index.
source§impl ChunkFilter<FixedSizeListType> for ChunkedArray<FixedSizeListType>
impl ChunkFilter<FixedSizeListType> for ChunkedArray<FixedSizeListType>
source§fn filter(
&self,
filter: &ChunkedArray<BooleanType>
) -> Result<ChunkedArray<FixedSizeListType>, PolarsError>
fn filter( &self, filter: &ChunkedArray<BooleanType> ) -> Result<ChunkedArray<FixedSizeListType>, PolarsError>
Filter values in the ChunkedArray with a boolean mask. Read more
source§impl ChunkShift<FixedSizeListType> for ChunkedArray<FixedSizeListType>
impl ChunkShift<FixedSizeListType> for ChunkedArray<FixedSizeListType>
fn shift(&self, periods: i64) -> ChunkedArray<FixedSizeListType>
source§impl ChunkShiftFill<FixedSizeListType, Option<&Series>> for ChunkedArray<FixedSizeListType>
impl ChunkShiftFill<FixedSizeListType, Option<&Series>> for ChunkedArray<FixedSizeListType>
source§fn shift_and_fill(
&self,
periods: i64,
fill_value: Option<&Series>
) -> ChunkedArray<FixedSizeListType>
fn shift_and_fill( &self, periods: i64, fill_value: Option<&Series> ) -> ChunkedArray<FixedSizeListType>
Shift the values by a given period and fill the parts that will be empty due to this operation
with
fill_value
.source§impl NumOpsDispatchInner for FixedSizeListType
impl NumOpsDispatchInner for FixedSizeListType
fn add_to( lhs: &ChunkedArray<FixedSizeListType>, rhs: &Series ) -> Result<Series, PolarsError>
fn subtract( lhs: &ChunkedArray<FixedSizeListType>, rhs: &Series ) -> Result<Series, PolarsError>
fn multiply( lhs: &ChunkedArray<FixedSizeListType>, rhs: &Series ) -> Result<Series, PolarsError>
fn divide( lhs: &ChunkedArray<FixedSizeListType>, rhs: &Series ) -> Result<Series, PolarsError>
fn remainder( lhs: &ChunkedArray<FixedSizeListType>, rhs: &Series ) -> Result<Series, PolarsError>
Auto Trait Implementations§
impl Freeze for FixedSizeListType
impl RefUnwindSafe for FixedSizeListType
impl Send for FixedSizeListType
impl Sync for FixedSizeListType
impl Unpin for FixedSizeListType
impl UnwindSafe for FixedSizeListType
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more