-
Notifications
You must be signed in to change notification settings - Fork 1
DsQueue
Hyomoto edited this page Oct 16, 2020
·
14 revisions
Jump To | Go Back |
Arguments | Methods | Variables |
---|
A garbage-collected queue.
queue = new DsQueue()
queue.enqeue( "Hello!" )
show_debug_message( queue.dequeue() );
Name | Type | Purpose |
---|---|---|
values... | mixed |
The initial values to be pushed to the queue |
Jump To | top |
enqueue | enqueue_at_head | dequeue | head | tail | is |
---|
Returns: N/A 'undefined`
Name | Type | Purpose |
---|---|---|
values... | mixed |
Enqueues the values at the tail of the queue |
no description provided
Returns: N/A 'undefined`
Name | Type | Purpose |
---|---|---|
values... | mixed |
Enqueues the values at the head of the queue |
no description provided
Returns: Mixed
Name | Type | Purpose |
---|---|---|
values... | mixed |
Removes the value at the front of the queue and returns it |
no description provided
Returns: Mixed
Name | Type | Purpose |
---|---|---|
values... | mixed |
Returns the value at the head of the queue |
no description provided
Returns: Mixed
Name | Type | Purpose |
---|---|---|
values... | mixed |
Removes the value at the tail of the queue and returns it |
no description provided
Returns: N/A undefined
Name | Type | Purpose |
---|---|---|
_data_type | undef |
none provided |
No description.
Jump To | top |
---|
- tail_link - none provided
Devon Mullane 2020