Creates an empty ConcurrentLinkedQueue.
()
| 95 | |
| 96 | |
| 97 | public static <E> ConcurrentLinkedQueue<E> newConcurrentLinkedQueue() { |
| 98 | return new ConcurrentLinkedQueue<E>(); |
| 99 | } |
| 100 | |
| 101 | /** |
| 102 | * Creates a {@code ConcurrentLinkedQueue} containing the elements of the specified iterable, |
no test coverage detected