de.sciss.lucre.data

Iterator

trait Iterator[-Tx, +A] extends AnyRef

Important implementation note: Currently transactional iterators must be consumed within the same transaction that they were created in. This may be relaxed in the future.

Self Type
Iterator[Tx, A]
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Iterator
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def hasNext(implicit tx: Tx): Boolean

  2. abstract def next()(implicit tx: Tx): A

Concrete Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ++[B >: A, Tx1 <: Tx](that: Iterator[Tx1, B])(implicit tx: Tx): Iterator[Tx1, B]

  5. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  6. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  7. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  8. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. final def collect[B](pf: PartialFunction[A, B])(implicit tx: Tx): Iterator[Tx, B]

  10. final def endReached(): Nothing

    Attributes
    protected
  11. final def eq(arg0: AnyRef): Boolean

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

    Definition Classes
    AnyRef → Any
  13. final def filter(p: (A) ⇒ Boolean)(implicit tx: Tx): Iterator[Tx, A]

  14. final def filterNot(p: (A) ⇒ Boolean)(implicit tx: Tx): Iterator[Tx, A]

  15. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  16. final def flatMap[B](fun: (A) ⇒ Iterable[B])(implicit tx: Tx): Iterator[Tx, B]

  17. final def foreach(fun: (A) ⇒ Unit)(implicit tx: Tx): Unit

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

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

    Definition Classes
    AnyRef → Any
  20. final def isEmpty(implicit tx: Tx): Boolean

  21. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  22. final def map[B](fun: (A) ⇒ B)(implicit tx: Tx): Iterator[Tx, B]

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

    Definition Classes
    AnyRef
  24. final def nonEmpty(implicit tx: Tx): Boolean

  25. final def notify(): Unit

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

    Definition Classes
    AnyRef
  27. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  28. final def toIndexedSeq(implicit tx: Tx): IndexedSeq[A]

  29. final def toList(implicit tx: Tx): List[A]

  30. final def toMap[T, U](implicit tx: Tx, ev: <:<[A, (T, U)]): Map[T, U]

  31. final def toSeq(implicit tx: Tx): Seq[A]

  32. final def toSet[B >: A](implicit tx: Tx): Set[B]

  33. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped