com.nicta.scoobi.core

Iterator1

object Iterator1

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Iterator1
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. sealed trait BreakIterator1[+A] extends AnyRef

    A return type used in Iterator functions that split an iterator.

    A return type used in Iterator functions that split an iterator. Splitting a non-empty iterator will result in a non-empty iterator and a regular iterator.

    Isomorphic to '[A](Boolean, Iterator1[A], Iterator[A])'.

  2. case class LeftBreakIterator1[+A](x: Iterator1[A], y: Iterator[A]) extends BreakIterator1[A] with Product with Serializable

    The iterator split in two with non-empty first.

  3. case class RichIterator[+A](it: Iterator[A]) extends Product with Serializable

    Add methods to scala.collection.Iterable[A].

  4. case class RightBreakIterator1[+A](x: Iterator[A], y: Iterator1[A]) extends BreakIterator1[A] with Product with Serializable

    The iterator split in two with non-empty second.

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. implicit def IteratorToIterator1[A](it: Iterator[A]): RichIterator[A]

  5. def apply[A](elem: A, elems: A*): Iterator1[A]

    Construct an iterator with the given first and rest of values.

  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  10. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. def from(start: Int, step: Int): Iterator1[Int]

    Produce an infinite iterator starting at the given integer and incrementing by the given step continually.

  12. def from(start: Int): Iterator1[Int]

    Produce an infinite iterator starting at the given integer and incrementing by 1 continually.

  13. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  14. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  15. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  16. def iterate[A](start: A)(f: (A) ⇒ A): Iterator1[A]

    Produce an infinite iterator, starting at the given seed and applying the given transformation continually.

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

    Definition Classes
    AnyRef
  18. final def notify(): Unit

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

    Definition Classes
    AnyRef
  20. def single[A](elem: A): Iterator1[A]

    Construct an iterator with a single value.

  21. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  22. def toString(): String

    Definition Classes
    AnyRef → Any
  23. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped