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

◆ IsOne

bool System.Numerics.BigInteger.IsOne
get

Definition at line 72 of file BigInteger.cs.

73 {
74 get
75 {
76 if (_sign == 1)
77 {
78 return _bits == null;
79 }
80 return false;
81 }
82 }
readonly uint[] _bits
Definition BigInteger.cs:20