Trait polars_core::chunked_array::ops::ChunkTake
source · pub trait ChunkTake<Idx: ?Sized>: ChunkTakeUnchecked<Idx> {
// Required method
fn take(&self, indices: &Idx) -> PolarsResult<Self>
where Self: Sized;
}
Required Methods§
sourcefn take(&self, indices: &Idx) -> PolarsResult<Self>where
Self: Sized,
fn take(&self, indices: &Idx) -> PolarsResult<Self>where
Self: Sized,
Gather values from ChunkedArray by index.
Object Safety§
This trait is not object safe.