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

◆ IsEven

bool System.Numerics.BigInteger.IsEven
get

Definition at line 84 of file BigInteger.cs.

85 {
86 get
87 {
88 if (_bits != null)
89 {
90 return (_bits[0] & 1) == 0;
91 }
92 return (_sign & 1) == 0;
93 }
94 }
readonly uint[] _bits
Definition BigInteger.cs:20

Referenced by System.Numerics.BigInteger.ModPow().