Trait polars::chunked_array::object::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

Create a new ChunkedArray filled with values at that index.

Implementors