LinkedBlockingDeque.this

Creates a {@code LinkedBlockingDeque} with a capacity of {@link Integer#MAX_VALUE}, initially containing the elements of the given collection, added in traversal order of the collection's iterator.

@param c the collection of elements to initially contain @throws NullPointerException if the specified collection or any of its elements are null

  1. this()
  2. this(bool fairness)
  3. this(int capacity)
  4. this(int capacity, bool fairness)
  5. this(Collection!E c)
    class LinkedBlockingDeque(E)
    this
    (
    Collection!E c
    )
  6. this(E[] c)

Meta