Queue.from(Iterable elements)

Creates a queue containing all elements.

The element order in the queue is as if the elements were added using addLast in the order provided by elements.iterator.

Source

factory Queue.from(Iterable elements) = ListQueue<E>.from;