[][src]Trait polars::prelude::AsTakeIndex

pub trait AsTakeIndex {
    pub fn as_take_iter<'a>(&'a self) -> Box<dyn Iterator<Item = usize> + 'a>;
pub fn take_index_len(&self) -> usize; pub fn as_opt_take_iter<'a>(
        &'a self
    ) -> Box<dyn Iterator<Item = Option<usize>> + 'a> { ... } }

Required methods

pub fn as_take_iter<'a>(&'a self) -> Box<dyn Iterator<Item = usize> + 'a>[src]

pub fn take_index_len(&self) -> usize[src]

Loading content...

Provided methods

pub fn as_opt_take_iter<'a>(
    &'a self
) -> Box<dyn Iterator<Item = Option<usize>> + 'a>
[src]

Loading content...

Implementations on Foreign Types

impl AsTakeIndex for [u32][src]

Loading content...

Implementors

impl AsTakeIndex for &UInt32Chunked[src]

impl<T> AsTakeIndex for T where
    T: AsRef<[usize]>, 
[src]

Loading content...