pub trait ChunkShift<T: PolarsDataType> {
// Required method
fn shift(&self, periods: i64) -> ChunkedArray<T>;
}
Required Methods§
fn shift(&self, periods: i64) -> ChunkedArray<T>
Implementors§
impl ChunkShift<FixedSizeListType> for ArrayChunked
Available on crate feature
dtype-array
only.impl ChunkShift<ListType> for ListChunked
impl<'a, T> ChunkShift<T> for ChunkedArray<T>where
T: PolarsDataType<IsNested = FalseT, IsObject = FalseT>,
ChunkedArray<T>: ChunkFull<T::Physical<'a>> + ChunkFullNull,
for<'b> T::Physical<'b>: TotalOrd,
impl<T: PolarsObject> ChunkShift<ObjectType<T>> for ObjectChunked<T>
Available on crate feature
object
only.