pub struct ListType {}
This is supported on crate feature
object
only.Trait Implementations
sourceimpl ChunkExpandAtIndex<ListType> for ChunkedArray<ListType>
impl ChunkExpandAtIndex<ListType> for ChunkedArray<ListType>
sourcefn expand_at_index(&self, index: usize, length: usize) -> ChunkedArray<ListType>
fn expand_at_index(&self, index: usize, length: usize) -> ChunkedArray<ListType>
Create a new ChunkedArray filled with values at that index.
sourceimpl ChunkFilter<ListType> for ChunkedArray<ListType>
impl ChunkFilter<ListType> for ChunkedArray<ListType>
sourcefn filter(
&self,
filter: &ChunkedArray<BooleanType>
) -> Result<ChunkedArray<ListType>, PolarsError>
fn filter(
&self,
filter: &ChunkedArray<BooleanType>
) -> Result<ChunkedArray<ListType>, PolarsError>
Filter values in the ChunkedArray with a boolean mask. Read more
sourceimpl ChunkReverse<ListType> for ChunkedArray<ListType>
impl ChunkReverse<ListType> for ChunkedArray<ListType>
sourcefn reverse(&self) -> ChunkedArray<ListType>
fn reverse(&self) -> ChunkedArray<ListType>
Return a reversed version of this array.
sourceimpl ChunkShift<ListType> for ChunkedArray<ListType>
impl ChunkShift<ListType> for ChunkedArray<ListType>
fn shift(&self, periods: i64) -> ChunkedArray<ListType>
sourceimpl<'_> ChunkShiftFill<ListType, Option<&'_ Series>> for ChunkedArray<ListType>
impl<'_> ChunkShiftFill<ListType, Option<&'_ Series>> for ChunkedArray<ListType>
sourcefn shift_and_fill(
&self,
periods: i64,
fill_value: Option<&Series>
) -> ChunkedArray<ListType>
fn shift_and_fill(
&self,
periods: i64,
fill_value: Option<&Series>
) -> ChunkedArray<ListType>
Shift the values by a given period and fill the parts that will be empty due to this operation
with fill_value
. Read more
sourceimpl ChunkTakeEvery<ListType> for ChunkedArray<ListType>
impl ChunkTakeEvery<ListType> for ChunkedArray<ListType>
sourcefn take_every(&self, n: usize) -> ChunkedArray<ListType>
fn take_every(&self, n: usize) -> ChunkedArray<ListType>
Traverse and collect every nth element in a new array.
sourceimpl ChunkZip<ListType> for ChunkedArray<ListType>
impl ChunkZip<ListType> for ChunkedArray<ListType>
sourcefn zip_with(
&self,
mask: &ChunkedArray<BooleanType>,
other: &ChunkedArray<ListType>
) -> Result<ChunkedArray<ListType>, PolarsError>
fn zip_with(
&self,
mask: &ChunkedArray<BooleanType>,
other: &ChunkedArray<ListType>
) -> Result<ChunkedArray<ListType>, PolarsError>
Create a new ChunkedArray with values from self where the mask evaluates true
and values
from other
where the mask evaluates false
Read more
Auto Trait Implementations
impl RefUnwindSafe for ListType
impl Send for ListType
impl Sync for ListType
impl Unpin for ListType
impl UnwindSafe for ListType
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more