BigInt.Min
| Name | Mandatory | Description | Default | Type | 
| ⬅️ Input |  | Any valid big integer(s) represented as bytes supported by this operation. |  | Bytes[Bytes] | 
| Output ➡️ |  | Outputs the smaller of the two input big integers. |  | Bytes[Bytes] | 
| Operand | No | The big integer to compare the input with. | 0 | Var(Bytes)Var([Bytes]) | 
 
This shard compares the input big integer with the big integer specified in the Operand parameter and outputs the smaller of the two.
Examples
|  | 4 | BigInt = expected
4 | BigInt = operand
7 | BigInt
BigInt.Min(Operand: operand)
BigInt.Is(expected) | Assert.Is(true true)
 |