BigInt.Divide
| 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 divide the big integer input with. | 0 | Var(Bytes)Var([Bytes]) | 
 
This shard divides the input big integer by the big integer specified in the Operand parameter and outputs the result.
Examples
|  | 4 | BigInt = expected
2 | BigInt = operand
8 | BigInt
BigInt.Divide(Operand: operand)
BigInt.Is(expected) | Assert.Is(true true)
 |