Enum polars_core::chunked_array::ops::TakeIdx [−][src]
pub enum TakeIdx<'a, I, INulls> where
I: TakeIterator,
INulls: TakeIteratorNulls, {
Array(&'a UInt32Array),
Iter(I),
IterNulls(INulls),
}
Expand description
One of the three arguments allowed in unchecked_take
Variants
Array(&'a UInt32Array)
Tuple Fields of Array
0: &'a UInt32Array
Trait Implementations
impl<'a> From<&'a ChunkedArray<UInt32Type>> for TakeIdx<'a, Dummy<usize>, Dummy<Option<usize>>>
impl<'a> From<&'a ChunkedArray<UInt32Type>> for TakeIdx<'a, Dummy<usize>, Dummy<Option<usize>>>
Conversion from UInt32Chunked to Unchecked TakeIdx
Performs the conversion.
Conversion from Iterator<Item=usize> to Unchecked TakeIdx