Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ ActualLength() [2/2]

static int System.Numerics.BigIntegerCalculator.ActualLength ( uint[] value,
int length )
inlinestaticprivate

Definition at line 1130 of file BigIntegerCalculator.cs.

1131 {
1132 while (length > 0 && value[length - 1] == 0)
1133 {
1134 length--;
1135 }
1136 return length;
1137 }

References System.length, and System.value.