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

◆ Pow() [1/10]

static uint[] System.Numerics.BigIntegerCalculator.Pow ( uint value,
uint power )
inlinestatic

Definition at line 863 of file BigIntegerCalculator.cs.

864 {
865 int size = PowBound(power, 1, 1);
866 BitsBuffer value2 = new BitsBuffer(size, value);
867 return PowCore(power, ref value2);
868 }
static int PowBound(uint power, int valueLength, int resultLength)
static uint[] PowCore(uint power, ref BitsBuffer value)

References System.Numerics.BigIntegerCalculator.PowBound(), System.Numerics.BigIntegerCalculator.PowCore(), and System.value.

Referenced by System.Numerics.BigInteger.ModPow(), and System.Numerics.BigInteger.Pow().