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
| 24 | BigInt = expected
3 | BigInt = operand
8 | BigInt
BigInt.Multiply(Operand: operand)
BigInt.Is(expected) | Assert.Is(true true)
|