Trait polars::chunked_array::ops::ChunkTake[][src]

pub trait ChunkTake {
    unsafe fn take_unchecked<I, INulls>(
        &self,
        indices: TakeIdx<'_, I, INulls>
    ) -> Self
    where
        I: Iterator<Item = usize>,
        INulls: Iterator<Item = Option<usize>>
;
fn take<I, INulls>(&self, indices: TakeIdx<'_, I, INulls>) -> Self
    where
        I: Iterator<Item = usize>,
        INulls: Iterator<Item = Option<usize>>
; }
Expand description

Fast access by index.

Required methods

Take values from ChunkedArray by index.

Safety

Doesn’t do any bound checking.

Take values from ChunkedArray by index.

Implementors