Trait polars::chunked_array::ops::ChunkTake

source ·
pub trait ChunkTake<Idx>: ChunkTakeUnchecked<Idx>
where Idx: ?Sized,
{ // Required method fn take(&self, indices: &Idx) -> Result<Self, PolarsError> where Self: Sized; }

Required Methods§

source

fn take(&self, indices: &Idx) -> Result<Self, PolarsError>
where Self: Sized,

Gather values from ChunkedArray by index.

Object Safety§

This trait is not object safe.

Implementors§