Sort functions

Sorting functions from io.deephaven.function.Sort.

TypeNameSignatureDescription
FUNCTIONrankint[](ByteVector)Returns the indices of values sorted from smallest to largest.
FUNCTIONrankint[](Byte[])Returns the indices of values sorted from smallest to largest.
FUNCTIONrankint[](DoubleVector)Returns the indices of values sorted from smallest to largest.
FUNCTIONrankint[](Double[])Returns the indices of values sorted from smallest to largest.
FUNCTIONrankint[](FloatVector)Returns the indices of values sorted from smallest to largest.
FUNCTIONrankint[](Float[])Returns the indices of values sorted from smallest to largest.
FUNCTIONrankint[](IntVector)Returns the indices of values sorted from smallest to largest.
FUNCTIONrankint[](Integer[])Returns the indices of values sorted from smallest to largest.
FUNCTIONrankint[](LongVector)Returns the indices of values sorted from smallest to largest.
FUNCTIONrankint[](Long[])Returns the indices of values sorted from smallest to largest.
FUNCTIONrankint[](ShortVector)Returns the indices of values sorted from smallest to largest.
FUNCTIONrankint[](Short[])Returns the indices of values sorted from smallest to largest.
FUNCTIONrankint[](byte...)Returns the indices of values sorted from smallest to largest.
FUNCTIONrankint[](double...)Returns the indices of values sorted from smallest to largest.
FUNCTIONrankint[](float...)Returns the indices of values sorted from smallest to largest.
FUNCTIONrankint[](int...)Returns the indices of values sorted from smallest to largest.
FUNCTIONrankint[](long...)Returns the indices of values sorted from smallest to largest.
FUNCTIONrankint[](short...)Returns the indices of values sorted from smallest to largest.
FUNCTIONrankDescendingint[](ByteVector)Returns the indices of values sorted from largest to smallest.
FUNCTIONrankDescendingint[](Byte[])Returns the indices of values sorted from largest to smallest.
FUNCTIONrankDescendingint[](DoubleVector)Returns the indices of values sorted from largest to smallest.
FUNCTIONrankDescendingint[](Double[])Returns the indices of values sorted from largest to smallest.
FUNCTIONrankDescendingint[](FloatVector)Returns the indices of values sorted from largest to smallest.
FUNCTIONrankDescendingint[](Float[])Returns the indices of values sorted from largest to smallest.
FUNCTIONrankDescendingint[](IntVector)Returns the indices of values sorted from largest to smallest.
FUNCTIONrankDescendingint[](Integer[])Returns the indices of values sorted from largest to smallest.
FUNCTIONrankDescendingint[](LongVector)Returns the indices of values sorted from largest to smallest.
FUNCTIONrankDescendingint[](Long[])Returns the indices of values sorted from largest to smallest.
FUNCTIONrankDescendingint[](ShortVector)Returns the indices of values sorted from largest to smallest.
FUNCTIONrankDescendingint[](Short[])Returns the indices of values sorted from largest to smallest.
FUNCTIONrankDescendingint[](byte...)Returns the indices of values sorted from largest to smallest.
FUNCTIONrankDescendingint[](double...)Returns the indices of values sorted from largest to smallest.
FUNCTIONrankDescendingint[](float...)Returns the indices of values sorted from largest to smallest.
FUNCTIONrankDescendingint[](int...)Returns the indices of values sorted from largest to smallest.
FUNCTIONrankDescendingint[](long...)Returns the indices of values sorted from largest to smallest.
FUNCTIONrankDescendingint[](short...)Returns the indices of values sorted from largest to smallest.
FUNCTIONrankDescendingObjint[](Comparable...)Returns the indices of values sorted from largest to smallest.
FUNCTIONrankDescendingObjint[](Comparable[], Comparator)Returns the indices of values sorted from largest to smallest.
FUNCTIONrankDescendingObjint[](ObjectVector)Returns the indices of values sorted from largest to smallest.
FUNCTIONrankDescendingObjint[](ObjectVector, Comparator)Returns the indices of values sorted from largest to smallest.
FUNCTIONrankObjint[](Comparable...)Returns the indices of values sorted from smallest to largest.
FUNCTIONrankObjint[](Comparable[], Comparator)Returns the indices of values sorted from smallest to largest.
FUNCTIONrankObjint[](ObjectVector)Returns the indices of values sorted from smallest to largest.
FUNCTIONrankObjint[](ObjectVector, Comparator)Returns the indices of values sorted from smallest to largest.
FUNCTIONsortbyte[](ByteVector)Returns sorted values from smallest to largest.
FUNCTIONsortbyte[](Byte[])Returns sorted values from smallest to largest.
FUNCTIONsortbyte[](byte...)Returns sorted values from smallest to largest.
FUNCTIONsortdouble[](DoubleVector)Returns sorted values from smallest to largest.
FUNCTIONsortdouble[](Double[])Returns sorted values from smallest to largest.
FUNCTIONsortdouble[](double...)Returns sorted values from smallest to largest.
FUNCTIONsortfloat[](FloatVector)Returns sorted values from smallest to largest.
FUNCTIONsortfloat[](Float[])Returns sorted values from smallest to largest.
FUNCTIONsortfloat[](float...)Returns sorted values from smallest to largest.
FUNCTIONsortint[](IntVector)Returns sorted values from smallest to largest.
FUNCTIONsortint[](Integer[])Returns sorted values from smallest to largest.
FUNCTIONsortint[](int...)Returns sorted values from smallest to largest.
FUNCTIONsortlong[](LongVector)Returns sorted values from smallest to largest.
FUNCTIONsortlong[](Long[])Returns sorted values from smallest to largest.
FUNCTIONsortlong[](long...)Returns sorted values from smallest to largest.
FUNCTIONsortshort[](ShortVector)Returns sorted values from smallest to largest.
FUNCTIONsortshort[](Short[])Returns sorted values from smallest to largest.
FUNCTIONsortshort[](short...)Returns sorted values from smallest to largest.
FUNCTIONsortDescendingbyte[](ByteVector)Returns sorted values from largest to smallest.
FUNCTIONsortDescendingbyte[](Byte[])Returns sorted values from largest to smallest.
FUNCTIONsortDescendingbyte[](byte...)Returns sorted values from largest to smallest.
FUNCTIONsortDescendingdouble[](DoubleVector)Returns sorted values from largest to smallest.
FUNCTIONsortDescendingdouble[](Double[])Returns sorted values from largest to smallest.
FUNCTIONsortDescendingdouble[](double...)Returns sorted values from largest to smallest.
FUNCTIONsortDescendingfloat[](FloatVector)Returns sorted values from largest to smallest.
FUNCTIONsortDescendingfloat[](Float[])Returns sorted values from largest to smallest.
FUNCTIONsortDescendingfloat[](float...)Returns sorted values from largest to smallest.
FUNCTIONsortDescendingint[](IntVector)Returns sorted values from largest to smallest.
FUNCTIONsortDescendingint[](Integer[])Returns sorted values from largest to smallest.
FUNCTIONsortDescendingint[](int...)Returns sorted values from largest to smallest.
FUNCTIONsortDescendinglong[](LongVector)Returns sorted values from largest to smallest.
FUNCTIONsortDescendinglong[](Long[])Returns sorted values from largest to smallest.
FUNCTIONsortDescendinglong[](long...)Returns sorted values from largest to smallest.
FUNCTIONsortDescendingshort[](ShortVector)Returns sorted values from largest to smallest.
FUNCTIONsortDescendingshort[](Short[])Returns sorted values from largest to smallest.
FUNCTIONsortDescendingshort[](short...)Returns sorted values from largest to smallest.
FUNCTIONsortDescendingObjComparable[](Comparable...)Returns sorted values from largest to smallest.
FUNCTIONsortDescendingObjComparable[](Comparable[], Comparator)Returns sorted values from largest to smallest.
FUNCTIONsortDescendingObjComparable[](ObjectVector)Returns sorted values from largest to smallest.
FUNCTIONsortDescendingObjComparable[](ObjectVector, Comparator)Returns sorted values from largest to smallest.
FUNCTIONsortObjComparable[](Comparable...)Returns sorted values from smallest to largest.
FUNCTIONsortObjComparable[](Comparable[], Comparator)Returns sorted values from smallest to largest.
FUNCTIONsortObjComparable[](ObjectVector)Returns sorted values from smallest to largest.
FUNCTIONsortObjComparable[](ObjectVector, Comparator)Returns sorted values from smallest to largest.