Skip to content

BigInt.Pow

Name Mandatory Description Default Type
⬅️ Input Big integer represented as bytes. Bytes
Output ➡️ Outputs the BigInt result of the operation as bytes. Bytes
Operand No The power to which the input big integer will be raised. This must be a non-negative integer. none IntVar(Int)

This shard raises the input big integer to the power of the exponent specified in the Operand parameter.

Examples

1
2
8 | BigInt = expected
2 | BigInt | BigInt.Pow(Operand: 3) | BigInt.Is(expected) | Assert.Is(true Break: true)