Skip to content

BigInt.Multiply

Name Mandatory Description Default Type
⬅️ Input Any valid big integer(s) represented as bytes supported by this operation. Bytes[Bytes]
Output ➡️ Outputs the result of the operation as a big integer or sequence of big integers represented as bytes. Bytes[Bytes]
Operand No The big integer to multiply the big integer input with. 0 Var(Bytes)Var([Bytes])

This shard multiplies the input big integer with the big integer specified in the Operand parameter and outputs the result.

Examples

1
2
3
4
5
6
24 | BigInt = expected
3 | BigInt = operand

8 | BigInt
BigInt.Multiply(Operand: operand)
BigInt.Is(expected) | Assert.Is(true true)