pub trait ChunkSort<T: PolarsDataType> {
    fn sort_with(&self, options: SortOptions) -> ChunkedArray<T>;
    fn sort(&self, reverse: bool) -> ChunkedArray<T>;
    fn argsort(&self, options: SortOptions) -> IdxCa;

    fn argsort_multiple(
        &self,
        _other: &[Series],
        _reverse: &[bool]
    ) -> PolarsResult<IdxCa> { ... } }
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