de.sciss.collection.txn.TotalOrder

Map

sealed trait Map[S <: Sys[S], A] extends TotalOrder[S]

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

Type Members

  1. final type E = Entry[S, A]

    Definition Classes
    MapTotalOrder
  2. final type KOpt = KeyOption[S, A]

    Attributes
    protected

Abstract Value Members

  1. abstract def entryView: (A) ⇒ E

  2. abstract def id: ID

    Definition Classes
    Mutable
  3. abstract def observer: RelabelObserver[Tx, A]

    Attributes
    protected
  4. abstract def root: E

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

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

    Definition Classes
    MapTotalOrder
  5. abstract def sizeVal: Var[Int]

    Attributes
    protected

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. implicit final val EntrySerializer: TxnSerializer[Tx, Acc, E]

  7. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  8. def clone(): AnyRef

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

    Definition Classes
    Mutable → Disposable
  10. final def disposeData()(implicit tx: Tx): Unit

    Attributes
    protected
    Definition Classes
    Map → Mutable
  11. final def eq(arg0: AnyRef): Boolean

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

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

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

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

    Definition Classes
    Mutable → AnyRef → Any
  16. final 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.

    Definition Classes
    MapTotalOrder
  17. def insert()(implicit tx: Tx): E

  18. final def isInstanceOf[T0]: Boolean

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

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

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

    Definition Classes
    AnyRef
  22. def placeAfter(prev: A, key: A)(implicit tx: Tx): Unit

  23. def placeBefore(next: A, key: A)(implicit tx: Tx): Unit

  24. final def readEntry(in: DataInput, access: Acc)(implicit tx: Tx): E

  25. final 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).

    Definition Classes
    MapTotalOrder
  26. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  27. final def tagList(from: E)(implicit tx: Tx): List[Int]

    Definition Classes
    MapTotalOrder
  28. def toString(): String

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

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

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

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

    Definition Classes
    Mutable → Writer
  33. final def writeData(out: DataOutput): Unit

    Attributes
    protected
    Definition Classes
    Map → Mutable

Inherited from TotalOrder[S]

Inherited from Mutable[S]

Inherited from Disposable[Tx]

Inherited from Writer

Inherited from AnyRef

Inherited from Any