LibOpIntAddNP

Git Source

Opcode to add N integers. Errors on overflow.

Functions

integrity

function integrity(IntegrityCheckStateNP memory, Operand operand) internal pure returns (uint256, uint256);

run

int-add Addition with implied overflow checks from the Solidity 0.8.x compiler.

function run(InterpreterStateNP memory, Operand operand, Pointer stackTop) internal pure returns (Pointer);

referenceFn

Gas intensive reference implementation of addition for testing.

function referenceFn(InterpreterStateNP memory, Operand, uint256[] memory inputs)
    internal
    pure
    returns (uint256[] memory outputs);