Trait polars_core::prelude::IndexToUsize

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§

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

Translate the negative index to an offset.

Provided Methods§

fn try_negative_to_usize(self, len: usize) -> Result<usize, PolarsError>
where Self: Sized + Copy,

Implementors§

§

impl<I> IndexToUsize for I