Trait polars::prelude::TakeRandomUtf8[][src]

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

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

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