Trait polars::chunked_array::object::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.

Out of bounds access doesn’t Error but will return a Null value

Provided methods

Get a value by index and ignore the null bit.

Safety

Does not do bound checks.

Implementors