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

◆ Multiply() [3/4]

void System.Number.BigInteger.Multiply ( ref BigInteger value)
inline

Definition at line 544 of file Number.cs.

545 {
546 if (value._length <= 1)
547 {
548 Multiply(ref this, value.ToUInt32(), out this);
549 return;
550 }
551 SetValue(out var result, ref this);
552 Multiply(ref result, ref value, out this);
553 }
static unsafe void SetValue(out BigInteger result, ref BigInteger value)
Definition Number.cs:615

References System.Multiply, System.Number.BigInteger.SetValue(), and System.value.