Trait polars_core::chunked_array::ops::ChunkTakeUnchecked

source ·
pub trait ChunkTakeUnchecked<Idx: ?Sized> {
    // Required method
    unsafe fn take_unchecked(&self, indices: &Idx) -> Self;
}

Required Methods§

source

unsafe fn take_unchecked(&self, indices: &Idx) -> Self

Gather values from ChunkedArray by index.

§Safety

The non-null indices must be valid.

Object Safety§

This trait is not object safe.

Implementors§