pub trait ChunkSort<T> {
    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]
    ) -> Result<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