UniqueQueue
A queue implementation that keeps only one copy of each element.
Trying to insert an element that is already in the queue will ignore the new copy, keeping the old. Additionally, the element will keep its original position in the queue, and is not moved to the end of the queue.
Constructors
Functions
addAll
Link copied to clipboard
containsAll
Link copied to clipboard
iterator
Link copied to clipboard
parallelStream
Link copied to clipboard
removeAll
Link copied to clipboard
retainAll
Link copied to clipboard
spliterator
Link copied to clipboard