Welcome
Queue.Create
Queue.Push
Queue.Pop
Queue.Peek
Queue.GetSize
Queue.isEmpty
Stack.Create
Stack.Push
Stack.Pop
Stack.Peek
Stack.GetSize
Stack.isEmpty
|
(string) Queue.Create () |
Creats an empty queue and returns the unique queueId as a string.
This action returns a (string) value.
|
Queue.Push ( |
(table) QueueId, (string) Value ) |
Insert a value into a queue.
(table) The queue to insert the value into.
(string) The value you want to insert into the queue.
This action dose not return any value.
|
(string) Queue.Pop ( |
(table) QueueId ) |
Removes the bottom element from the queue and returns it.
(table) The unique queueId.
This action returns a (string) value.
|
(string) Queue.Peek ( |
(table) QueueId ) |
Returns the bottom element.
(table) The unique queueId.
This action returns a (string) value.
|
(integer) Queue.GetSize ( |
(table) QueueId ) |
Returns the size of the queue.
(table) The unique queueId.
This action returns a (integer) value.
|
(boolean) Queue.isEmpty ( |
(table) QueueId ) |
Returns true if the queue contains no element, otherwise returns false.
(table) The unique queueId.
This action returns a (boolean) value.
|
(string) Stack.Create () |
Creats an empty stack and returns the unique stackId as a string.
This action returns a (string) value.
|
Stack.Push ( |
(table) StackId, (string) Value ) |
Insert a value into a stack.
(table) The stack to insert the value into.
(string) The value you want to insert into the stack.
This action dose not return any value.
|
(string) Stack.Pop ( |
(table) StackId ) |
Removes the top element from the stack and returns it.
(table) The unique stackId.
This action returns a (string) value.
|
(string) Stack.Peek ( |
(table) StackId ) |
Returns the top element.
(table) The unique stackId.
This action returns a (string) value.
|
(integer) Stack.GetSize ( |
(table) StackId ) |
Returns the size of the stack.
(table) The unique stackId.
This action returns a (integer) value.
|
(boolean) Stack.isEmpty ( |
(table) StackId ) |
Returns true if the stack contains no element, otherwise returns false.
(table) The unique stackId.
This action returns a (boolean) value.
Made with Action Plugin Compiler