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.SorterObjectArray.Heapsort ( int lo,
int hi )
inlineprivate

Definition at line 1644 of file Array.cs.

1645 {
1646 this.DownHeap(lo, hi, lo);
1647 this.Swap(lo, hi);
1648 int num = 1;
1649 this.DownHeap(num, hi, lo);
1650 }
void Swap(int i, int j)
Definition Array.cs:1589
void DownHeap(int i, int n, int lo)
Definition Array.cs:1653

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