stack.push
Add an item to a stack.
method uint stack.push
Return value
The pointer to the added item.
stack.push
The method adds a number to a stack.
method uint stack.push (
uint val
)
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.
method str stack.push (
str val
)
str val
)
Parameters
val | Pushing string. |
Return value
The added string is returned.
Related links | Source |