sealed trait Map[T <: Exec[T], A] extends TotalOrder[T]
- Self Type
- Map[T, A]
- Alphabetic
- By Inheritance
- Map
- TotalOrder
- Mutable
- Disposable
- Writable
- Identified
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Type Members
- final type E = Entry[T, A]
- Definition Classes
- Map → TotalOrder
- final type KOpt = KeyOption[T, A]
- Attributes
- protected
Abstract Value Members
- abstract def dispose()(implicit tx: T): Unit
- Definition Classes
- Disposable
- abstract def entryView: (A) => E
- abstract def id: Ident[T]
- Definition Classes
- Identified
- abstract def observer: RelabelObserver[T, A]
- Attributes
- protected
- 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
- Map → TotalOrder
- abstract def sizeVal: Var[T, Int]
- Attributes
- protected
- abstract def write(out: DataOutput): Unit
- Definition Classes
- Writable
Concrete Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- implicit final val EntryFormat: TFormat[T, E]
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
- final def disposeData()(implicit tx: T): Unit
- Attributes
- protected
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(that: Any): Boolean
- Definition Classes
- Identified → AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def hashCode(): Int
- Definition Classes
- Identified → AnyRef → Any
- final def head(implicit tx: T): 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
- Map → TotalOrder
- def insert()(implicit tx: T): E
Creates a new _unlinked_ entry in the order.
Creates a new _unlinked_ entry in the order. The actual insertion (linking) must be done with a successive call to either
placeAfter
orplaceBefore
! - final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def placeAfter(prev: A, key: A)(implicit tx: T): Unit
- def placeBefore(next: A, key: A)(implicit tx: T): Unit
- final def readEntry(in: DataInput)(implicit tx: T): E
- final def size(implicit tx: T): 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
- Map → TotalOrder
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- final def tagList(from: E)(implicit tx: T): List[Int]
- Definition Classes
- Map → TotalOrder
- def toString(): String
- Definition Classes
- Map → AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def writeData(out: DataOutput): Unit
- Attributes
- protected
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated