pub trait ChunkExpandAtIndex<T: PolarsDataType> {
    fn new_from_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