Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TMtxVecInt *SortAscend() const; | Sort all calling vector elements in ascending order in-place. |
| 2 | TMtxVecInt *SortAscend(const int Index, const int Len) const; | Sort calling vector elements [Index..Index+Len-1] in ascending order in-place. |
| 3 | TVecInt *SortAscend(TVecInt *DstSortIdx) const; | Sort all calling vector elements in ascending order in-place. |
| 4 | TMtxVecInt *SortAscend(TMtxVecInt *DstSortIdx, const int SortIdxIndex, const int Index, const int Len) const; |
Overload 1: TMtxVecInt *SortAscend() const;
Sort all calling vector elements in ascending order in-place.
See Also: VectorInt::SortDescend
Declared in Dew::Math::VectorInt · Dew.Math/MtxExprInt.h · Cross-compiler
Overload 2: TMtxVecInt *SortAscend(const int Index, const int Len) const;
Sort calling vector elements [Index..Index+Len-1] in ascending 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 *SortAscend(TVecInt *DstSortIdx) const;
Sort all calling vector elements in ascending 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 *SortAscend(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