MONC
|
Pops a generic element off the stack or queue. More...
Private Member Functions | |
class(*) function, pointer | stack_pop_generic (specificstack) |
Pops an element off the stack (LIFO) More... | |
class(*) function, pointer | queue_pop_generic (specificqueue) |
Pops the queue element off the head of the queue (FIFO) More... | |
Pops a generic element off the stack or queue.
This has a time complexity of O(1)
collection | The specific stack or queue involved |
Definition at line 158 of file collections.F90.
|
private |
Pops the queue element off the head of the queue (FIFO)
Do not call directly from external module, this is called via the appropriate interface
specificqueue | The specific queue involved |
Definition at line 2630 of file collections.F90.
|
private |
Pops an element off the stack (LIFO)
Do not call directly from external module, this is called via the appropriate interface
specificstack | The specific stack involved |
Definition at line 2334 of file collections.F90.