terraria-cpp2il-methodrecon v1.4.4.9
Terraria mobile dump, with reconstructed method body. Dump with CallAnalysis: https://infinitynichto.github.io/terraria-cpp2il
Loading...
Searching...
No Matches

◆ Heapsort()

void System.Array.SorterGenericArray.Heapsort ( int lo,
int hi )
inlineprivate

Definition at line 1749 of file Array.cs.

1750 {
1751 this.DownHeap(lo, hi, lo);
1752 this.Swap(lo, hi);
1753 int num = 1;
1754 this.DownHeap(num, hi, lo);
1755 }
void Swap(int i, int j)
Definition Array.cs:1702
void DownHeap(int i, int n, int lo)
Definition Array.cs:1758

References System.Array.SorterGenericArray.DownHeap(), and System.Array.SorterGenericArray.Swap().