|
|
|
|
|
- Multithreading operating mode
<Stack variable>.Push (Function) In french: <Variable Pile>.Empile Pushes an element onto the stack. The element is inserted at the top of the stack.
MaPile is Stack of int
MaPile.Push(1)
MaPile.Push(2)
MaPile.Push(3)
x is int
WHILE MaPile.Pop(x)
Trace(x)
END
Syntax <Stack>: Stack variable Name of the Stack variable to be used. <Value>: Type of elements handled by the stack Value that will be added at the top of the stack. Remarks Multithreading operating mode If the AdditionCompleted property is set to True, <Stack variable>.Push fails and causes a WLanguage error.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|