Trait polars_core::chunked_array::ops::ChunkShift [−][src]
pub trait ChunkShift<T> {
fn shift(&self, periods: i64) -> ChunkedArray<T>;
}
Required methods
fn shift(&self, periods: i64) -> ChunkedArray<T>
Implementors
impl ChunkShift<CategoricalType> for CategoricalChunked
This is supported on crate feature
dtype-categorical
only.impl<T> ChunkShift<ObjectType<T>> for ObjectChunked<T>
This is supported on crate feature
object
only.