stack.push
Add an item to a stack.
Return value
The pointer to the added item.
stack.push
The method adds a number to a stack.
uint val
)
Parameters
| val | Pushing uint or int number. |
Return value
The added value is returned.
stack.push
The method adds a string to a stack. The stack must be described as stack of str.
str val
)
Parameters
| val | Pushing string. |
Return value
The added string is returned.
Related links | Source |