Skip to content

BigInt.Max

Name Mandatory Description Default Type
⬅️ Input Any valid big integer(s) represented as bytes supported by this operation. Bytes[Bytes]
Output ➡️ Outputs the larger 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 larger of the two.

Examples

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

7 | BigInt
BigInt.Max(Operand: operand)
BigInt.Is(expected) | Assert.Is(true true)