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

◆ Pow() [6/10]

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

Definition at line 870 of file BigIntegerCalculator.cs.

871 {
872 int size = PowBound(power, value.Length, 1);
873 BitsBuffer value2 = new BitsBuffer(size, value);
874 return PowCore(power, ref value2);
875 }
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.