final class IteratorOps[A] extends AnyVal

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. IteratorOps
  2. AnyVal
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new IteratorOps(it: Iterator[A])

Value Members

  1. def collectWhileDefined[B](pf: PartialFunction[A, B]): Iterator[B]
  2. def distinct: Iterator[A]
  3. def distinctBy[B](f: (A) ⇒ B): Iterator[A]
  4. def drainTo[C[_]](n: Int)(implicit cbf: CanBuildFrom[Nothing, A, C[A]]): C[A]
  5. def getClass(): Class[_ <: AnyVal]
    Definition Classes
    AnyVal → Any
  6. def nextOpt: commons.Opt[A]
  7. def pairs: Iterator[(A, A)]