Packages

trait Deque[E] extends Queue[E] with SequencedCollection[E]

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Deque
  2. SequencedCollection
  3. Queue
  4. Collection
  5. Iterable
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def add(e: E): Boolean
    Definition Classes
    DequeQueueCollection
  2. abstract def addAll(c: Collection[_ <: E]): Boolean
    Definition Classes
    Collection
  3. abstract def addFirst(e: E): Unit
  4. abstract def addLast(e: E): Unit
  5. abstract def clear(): Unit
    Definition Classes
    Collection
  6. abstract def contains(o: Any): Boolean
    Definition Classes
    DequeCollection
  7. abstract def containsAll(c: Collection[_]): Boolean
    Definition Classes
    Collection
  8. abstract def descendingIterator(): Iterator[E]
  9. abstract def element(): E
    Definition Classes
    DequeQueue
  10. abstract def getFirst(): E
  11. abstract def getLast(): E
  12. abstract def isEmpty(): Boolean
    Definition Classes
    Collection
  13. abstract def iterator(): Iterator[E]
    Definition Classes
    DequeCollectionIterable
  14. abstract def offer(e: E): Boolean
    Definition Classes
    DequeQueue
  15. abstract def offerFirst(e: E): Boolean
  16. abstract def offerLast(e: E): Boolean
  17. abstract def peek(): E
    Definition Classes
    DequeQueue
  18. abstract def peekFirst(): E
  19. abstract def peekLast(): E
  20. abstract def poll(): E
    Definition Classes
    DequeQueue
  21. abstract def pollFirst(): E
  22. abstract def pollLast(): E
  23. abstract def pop(): E
  24. abstract def push(e: E): Unit
  25. abstract def remove(o: Any): Boolean
    Definition Classes
    DequeCollection
  26. abstract def remove(): E
    Definition Classes
    DequeQueue
  27. abstract def removeAll(c: Collection[_]): Boolean
    Definition Classes
    Collection
  28. abstract def removeFirst(): E
  29. abstract def removeFirstOccurrence(o: Any): Boolean
  30. abstract def removeLast(): E
  31. abstract def removeLastOccurrence(o: Any): Boolean
  32. abstract def retainAll(c: Collection[_]): Boolean
    Definition Classes
    Collection
  33. abstract def size(): Int
    Definition Classes
    DequeCollection
  34. abstract def toArray[T <: AnyRef](a: Array[T]): Array[T]
    Definition Classes
    Collection
  35. abstract def toArray(): Array[AnyRef]
    Definition Classes
    Collection

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  9. def forEach(action: Consumer[_ >: E]): Unit
    Definition Classes
    Iterable
  10. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  12. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  13. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  15. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  16. def parallelStream(): Stream[E]
    Definition Classes
    Collection
  17. def removeIf(filter: Predicate[_ >: E]): Boolean
    Definition Classes
    Collection
  18. def spliterator(): Spliterator[E]

    From the Java 8 documentation: The default implementation should usually be overridden.

    From the Java 8 documentation: The default implementation should usually be overridden. The spliterator returned by the default implementation has poor splitting capabilities, is unsized, and does not report any spliterator characteristics. Implementing classes can nearly always provide a better implementation.

    Definition Classes
    CollectionIterable
  19. def stream(): Stream[E]
    Definition Classes
    Collection
  20. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  21. def toString(): String
    Definition Classes
    AnyRef → Any
  22. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  23. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  24. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from SequencedCollection[E]

Inherited from Queue[E]

Inherited from Collection[E]

Inherited from Iterable[E]

Inherited from AnyRef

Inherited from Any

Ungrouped