A DeletableQueue is a queue from which items may be removed outside of the normal pop() method. It offers the additonal operations:
pop()
delete()
remove()
clear()
T : the type of items in this DeletableQueue
Rest
Protected
Readonly
A DeletableQueue is a queue from which items may be removed outside of the normal
pop()method. It offers the additonal operations:delete(): remove an arbitrary item from the queue by indexremove(): remove an arbitrary item from the queueclear(): remove all items from the queueTypeparam
T : the type of items in this DeletableQueue