Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TMtxVecInt *SortDescend() const; | Sort all calling vector elements in descending order in-place. |
| 2 | TMtxVecInt *SortDescend(const int Index, const int Len) const; | Sort calling vector elements [Index..Index+Len-1] in descending order in-place. |
| 3 | TVecInt *SortDescend(TVecInt *DstSortIdx) const; | Sort all calling vector elements in descending order in-place. |
| 4 | TMtxVecInt *SortDescend(TMtxVecInt *DstSortIdx, const int SortIdxIndex, const int Index, const int Len) const; |
Overload 1: TMtxVecInt *SortDescend() const;
Sort all calling vector elements in descending order in-place.
See Also: VectorInt::SortAscend
Declared in Dew::Math::VectorInt · Dew.Math/MtxExprInt.h · Cross-compiler
Overload 2: TMtxVecInt *SortDescend(const int Index, const int Len) const;
Sort calling vector elements [Index..Index+Len-1] in descending order in-place.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Index | const int | |
| 2 | Len | const int |
Declared in Dew::Math::VectorInt · Dew.Math/MtxExprInt.h · Cross-compiler
Overload 3: TVecInt *SortDescend(TVecInt *DstSortIdx) const;
Sort all calling vector elements in descending order in-place.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | DstSortIdx | TVecInt * | After execution stores sorted values indices. |
Returns: calling vector, storing sorted values.
Remarks:
Size of DstSortIdx and calling vector are adjusted automatically.
Declared in Dew::Math::VectorInt · Dew.Math/MtxExprInt.h · Cross-compiler
Overload 4: TMtxVecInt *SortDescend(TMtxVecInt *DstSortIdx, const int SortIdxIndex, const int Index, const int Len) const;
| # | Name | Type | Description |
|---|---|---|---|
| 1 | DstSortIdx | TMtxVecInt * | |
| 2 | SortIdxIndex | const int | |
| 3 | Index | const int | |
| 4 | Len | const int |
Declared in Dew::Math::VectorInt · Dew.Math/MtxExprInt.h · Cross-compiler