BigInt.IsNot
Name |
Mandatory |
Description |
Default |
Type |
⬅️ Input |
|
Big integer represented as bytes. |
|
Bytes |
Output ➡️ |
|
Outputs true if the input big integer is not equal to the big integer specified in the Operand parameter and false otherwise. |
|
Bool |
Operand |
No |
The big integer to compare against represented as bytes. |
none |
Var(Bytes) |
This shard checks if the input big integer is not equal to the operand.
Examples
| 11 | BigInt = expected
9 | BigInt | BigInt.IsNot(Operand: expected) | Assert.Is(true Break: true)
|