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

◆ BigInteger() [1/12]

System.Numerics.BigInteger.BigInteger ( int value)
inline

Definition at line 98 of file BigInteger.cs.

99 {
100 if (value == int.MinValue)
101 {
102 this = s_bnMinInt;
103 return;
104 }
105 _sign = value;
106 _bits = null;
107 }
readonly uint[] _bits
Definition BigInteger.cs:20
static readonly BigInteger s_bnMinInt
Definition BigInteger.cs:22

References System.Numerics.BigInteger._bits, System.Numerics.BigInteger._sign, System.Numerics.BigInteger.s_bnMinInt, and System.value.

Referenced by System.Numerics.BigInteger.Add(), System.Numerics.BigInteger.DivRem(), System.Numerics.BigInteger.GreatestCommonDivisor(), System.Numerics.BigInteger.GreatestCommonDivisor(), System.Numerics.BigInteger.ModPow(), System.Numerics.BigInteger.operator BigInteger(), System.Numerics.BigInteger.operator BigInteger(), System.Numerics.BigInteger.operator BigInteger(), System.Numerics.BigInteger.operator BigInteger(), System.Numerics.BigInteger.operator BigInteger(), System.Numerics.BigInteger.operator BigInteger(), System.Numerics.BigInteger.operator BigInteger(), System.Numerics.BigInteger.operator BigInteger(), System.Numerics.BigInteger.operator BigInteger(), System.Numerics.BigInteger.operator BigInteger(), System.Numerics.BigInteger.operator BigInteger(), System.Numerics.BigInteger.operator%(), System.Numerics.BigInteger.operator&(), System.Numerics.BigInteger.operator*(), System.Numerics.BigInteger.operator-(), System.Numerics.BigInteger.operator/(), System.Numerics.BigInteger.operator<<(), System.Numerics.BigInteger.operator>>(), System.Numerics.BigInteger.operator^(), System.Numerics.BigInteger.operator|(), System.Numerics.BigInteger.Pow(), and System.Numerics.BigInteger.Subtract().