LibParseStackName

Git Source

Functions

pushStackName

Push a word onto the stack name stack.

function pushStackName(ParseState memory state, bytes32 word) internal pure returns (bool exists, uint256 index);

Returns

NameTypeDescription
existsboolWhether the word already existed.
indexuint256The new index after the word was pushed. Will be unchanged if the word already existed.

stackNameIndex

Retrieve the index of a previously pushed stack name.

function stackNameIndex(ParseState memory state, bytes32 word) internal pure returns (bool exists, uint256 index);