LibOpLessThanOrEqualToNP
Opcode to return 1 if the first item on the stack is less than or equal to the second item on the stack, else 0.
Functions
integrity
function integrity(IntegrityCheckStateNP memory, Operand) internal pure returns (uint256, uint256);
run
LTE LTE is 1 if the first item is less than or equal to the second item, else 0.
function run(InterpreterStateNP memory, Operand, Pointer stackTop) internal pure returns (Pointer);
referenceFn
Gas intensive reference implementation of LTE for testing.
function referenceFn(InterpreterStateNP memory, Operand, uint256[] memory inputs)
internal
pure
returns (uint256[] memory outputs);