Trait polars::prelude::IndexToUsize

source ·
pub trait IndexToUsize: Display {
    // Required method
    fn negative_to_usize(self, len: usize) -> Option<usize>;

    // Provided method
    fn try_negative_to_usize(self, len: usize) -> Result<usize, PolarsError>
       where Self: Sized + Copy { ... }
}

Required Methods§

source

fn negative_to_usize(self, len: usize) -> Option<usize>

Translate the negative index to an offset.

Provided Methods§

Implementors§