pub trait ChunkTakeUnchecked<Idx>where
    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§