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

pub trait TakeRandom {
    type Item;
    fn get(&self, index: usize) -> Option<Self::Item>;

    unsafe fn get_unchecked(&self, index: usize) -> Option<Self::Item> { ... }
}
Expand description

Random access

Associated Types

Required methods

Get a nullable value by index.

Panics

Panics if index >= self.len()

Provided methods

Get a value by index and ignore the null bit.

Safety

Does not do bound checks.

Implementors