BE_StackPush

BE_StackPush(name;value)



Puts a value into the stack called name and "pushes" everything down the stack one value deeper.

Parameters:

- name : the name of the stored stack. Stacks have names, much like variables do.

- value : the value to store in the stack.

Keywords:

Stack Push


Version History:

- 4.1 :

Notes:

- A stack is an internal plugin storage type, where you push data into a stack ( like a list of values ) and Pop data out. In the plugin, stacks are LIFO ( Last In First Out ) so when you push a value onto the named stack, it will be the next value to POP out of the stack. See this for more info : https://www.thoughtco.com/definition-of-stack-in-programming-958162

Still need help? Contact Us Contact Us