LibParseStackName
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
Name | Type | Description |
---|---|---|
exists | bool | Whether the word already existed. |
index | uint256 | The 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);