strawman.collections.CollectionStrawMan1.Iterator

Partition

Related Doc: package Iterator

case class Partition[A](underlying: Iterator[A], p: (A) ⇒ Boolean, lookahead: ArrayBuffer[A], dual: ArrayBuffer[A]) extends Iterator[A] with Product with Serializable

Linear Supertypes
Serializable, Serializable, Product, Equals, Iterator[A], CanIterate[A], AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Partition
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. Iterator
  7. CanIterate
  8. AnyRef
  9. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Partition(underlying: Iterator[A], p: (A) ⇒ Boolean, lookahead: ArrayBuffer[A], dual: ArrayBuffer[A])

Value Members

  1. final def !=(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Definition Classes
    AnyRef → Any
  3. def ++[B >: A](xs: CanIterate[B]): Iterator[B]

    Definition Classes
    Iterator
  4. final def ==(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  5. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  6. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. def distribute(): ArrayBuffer[A]

  8. def drop(n: Int): Iterator[A]

    Definition Classes
    Iterator
  9. val dual: ArrayBuffer[A]

  10. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  11. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  12. def flatMap[B](f: (A) ⇒ CanIterate[B]): Iterator[B]

    Definition Classes
    Iterator
  13. def foldLeft[B](z: B)(op: (B, A) ⇒ B): B

    Definition Classes
    Iterator
  14. def foldRight[B](z: B)(op: (A, B) ⇒ B): B

    Definition Classes
    Iterator
  15. def foreach(f: (A) ⇒ Unit): Unit

    Definition Classes
    Iterator
  16. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  17. final def hasNext: Boolean

    Definition Classes
    PartitionIterator
  18. def indexWhere(p: (A) ⇒ Boolean): Int

    Definition Classes
    Iterator
  19. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  20. def iterator: Iterator[A]

    Definition Classes
    IteratorCanIterate
  21. val lookahead: ArrayBuffer[A]

  22. def map[B](f: (A) ⇒ B): Iterator[B]

    Definition Classes
    Iterator
  23. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  24. final def next: A

    Definition Classes
    PartitionIterator
  25. final def notify(): Unit

    Definition Classes
    AnyRef
  26. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  27. val p: (A) ⇒ Boolean

  28. def partition(p: (A) ⇒ Boolean): (Iterator[A], Iterator[A])

    Definition Classes
    Iterator
  29. def remaining: Int

    If the number of elements still to be returned by this iterator is known, that number, otherwise -1.

    If the number of elements still to be returned by this iterator is known, that number, otherwise -1.

    Definition Classes
    Iterator
  30. def reverse: Iterator[A]

    Definition Classes
    Iterator
  31. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  32. val underlying: Iterator[A]

    If this iterator results from applying a transfomation to another iterator, that other iterator, otherwise the iterator itself.

    If this iterator results from applying a transfomation to another iterator, that other iterator, otherwise the iterator itself.

    Definition Classes
    PartitionIterator
  33. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  34. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  35. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. def zip[B](that: CanIterate[B]): Iterator[(A, B)]

    Definition Classes
    Iterator

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from Iterator[A]

Inherited from CanIterate[A]

Inherited from AnyRef

Inherited from Any

Ungrouped