de.sciss.collection.txn

TotalOrder

sealed trait TotalOrder[S <: Sys[S]] extends Mutable[S]

Linear Supertypes
Mutable[S], Disposable[Tx], Writer, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. TotalOrder
  2. Mutable
  3. Disposable
  4. Writer
  5. AnyRef
  6. Any
Visibility
  1. Public
  2. All

Type Members

  1. abstract type E

Abstract Value Members

  1. abstract def disposeData()(implicit tx: Tx): Unit

    Attributes
    protected
    Definition Classes
    Mutable
  2. abstract def head(implicit tx: Tx): E

    Returns the head element of the structure.

    Returns the head element of the structure. Note that this is O(n) worst case.

  3. abstract def id: ID

    Definition Classes
    Mutable
  4. abstract def root: E

    The initial element created from which you can start to append and prepend.

  5. abstract def size(implicit tx: Tx): Int

    The number of elements in the order.

    The number of elements in the order. This is 1 for a newly created order (consisting only of the root element). You will rarely need this information except for debugging purpose. The operation is O(1).

  6. abstract def tagList(from: E)(implicit tx: Tx): List[Int]

  7. abstract def writeData(out: DataOutput): Unit

    Attributes
    protected
    Definition Classes
    Mutable

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 ==(arg0: AnyRef): Boolean

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

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

    Definition Classes
    Any
  7. def clone(): AnyRef

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  8. final def dispose()(implicit tx: Tx): Unit

    Definition Classes
    Mutable → Disposable
  9. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  10. def equals(that: Any): Boolean

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

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  12. final def getClass(): java.lang.Class[_]

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

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

    Definition Classes
    Any
  15. final def ne(arg0: AnyRef): Boolean

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

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

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

    Definition Classes
    AnyRef
  19. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws()
  23. final def write(out: DataOutput): Unit

    Definition Classes
    Mutable → Writer

Inherited from Mutable[S]

Inherited from Disposable[Tx]

Inherited from Writer

Inherited from AnyRef

Inherited from Any