Trait polars_core::chunked_array::ops::ChunkExpandAtIndex [−][src]
pub trait ChunkExpandAtIndex<T> {
fn expand_at_index(&self, length: usize, index: usize) -> ChunkedArray<T>;
}
Expand description
Create a new ChunkedArray filled with values at that index.
Required methods
fn expand_at_index(&self, length: usize, index: usize) -> ChunkedArray<T>
fn expand_at_index(&self, length: usize, index: usize) -> ChunkedArray<T>
Create a new ChunkedArray filled with values at that index.
Implementors
impl ChunkExpandAtIndex<CategoricalType> for CategoricalChunked
This is supported on crate feature
dtype-categorical
only.impl<T> ChunkExpandAtIndex<ObjectType<T>> for ObjectChunked<T>
This is supported on crate feature
object
only.