BigInt.Add
| 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 add to the input as bytes. | 0 | Var(Bytes)Var([Bytes]) | 
 
This shard adds the input big integer to the big integer specified in the Operand parameter and outputs the result.
Examples
|  | 7 | BigInt = expected
4 | BigInt = operand
3 | BigInt
BigInt.Add(Operand: operand)
BigInt.Is(expected) | Assert.Is(true true)
 |