pub trait ChunkSort<T> where
    T: PolarsDataType
{ fn sort_with(&self, options: SortOptions) -> ChunkedArray<T>; fn sort(&self, reverse: bool) -> ChunkedArray<T>; fn argsort(&self, options: SortOptions) -> ChunkedArray<UInt32Type>; fn argsort_multiple(
        &self,
        _other: &[Series],
        _reverse: &[bool]
    ) -> Result<ChunkedArray<UInt32Type>, PolarsError> { ... } }
Expand description

Sort operations on ChunkedArray.

Required Methods

Returned a sorted ChunkedArray.

Retrieve the indexes needed to sort this array.

Provided Methods

Retrieve the indexes need to sort this and the other arrays.

Implementors