strawman.collections.CollectionStrawMan1.Iterator

Drop

Related Doc: package Iterator

case class Drop[A](underlying: Iterator[A], n: Int) 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. Drop
  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 Drop(underlying: Iterator[A], n: Int)

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 drop(n: Int): Iterator[A]

    Definition Classes
    Iterator
  8. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  9. def finalize(): Unit

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

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

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

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

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

    Definition Classes
    AnyRef → Any
  15. def hasNext: Boolean

    Definition Classes
    DropIterator
  16. def indexWhere(p: (A) ⇒ Boolean): Int

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

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

    Definition Classes
    IteratorCanIterate
  19. def map[B](f: (A) ⇒ B): Iterator[B]

    Definition Classes
    Iterator
  20. val n: Int

  21. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  22. def next: A

    Definition Classes
    DropIterator
  23. final def notify(): Unit

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

    Definition Classes
    AnyRef
  25. def partition(p: (A) ⇒ Boolean): (Iterator[A], Iterator[A])

    Definition Classes
    Iterator
  26. 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
    DropIterator
  27. def reverse: Iterator[A]

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

    Definition Classes
    AnyRef
  29. var toSkip: Int

  30. 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
    DropIterator
  31. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  34. 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