Object/Trait

de.sciss.lucre.data.HASkipList

Set

Related Docs: trait Set | package HASkipList

Permalink

object Set

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Set
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. type Branch[S <: Sys[S], A] = HASkipList.Branch[S, A, A]

    Permalink
  2. type Leaf[S <: Sys[S], A] = HASkipList.Leaf[S, A, A]

    Permalink
  3. type Node[S <: Sys[S], A] = HASkipList.Node[S, A, A]

    Permalink

Value Members

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

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. def empty[S <: Sys[S], A](minGap: Int = 2, keyObserver: KeyObserver[Set.empty.S.Tx, A] = SkipList.NoKeyObserver)(implicit tx: Set.empty.S.Tx, ord: Ordering[Set.empty.S.Tx, A], keySerializer: Serializer[Set.empty.S.Tx, Set.empty.S.Acc, A]): Set[S, A]

    Permalink

    Creates a new empty skip list.

    Creates a new empty skip list. Type parameter S specifies the STM system to use. Type parameter A specifies the type of the keys stored in the list.

    minGap

    the minimum gap-size used for the skip list. This value must be between 1 and 126 inclusive.

    keyObserver

    an object which observes key promotions and demotions. Use NoKeyObserver (default) if key motions do not need to be monitored. The monitoring allows the use of the skip list for synchronized decimation of related data structures, such as the deterministic skip quadtree.

    tx

    the transaction in which to initialize the structure

    ord

    the ordering of the keys. This is an instance of txn.Ordering to allow for specialized versions and transactional restrictions.

    keySerializer

    the serializer for the elements, in case a persistent STM is used.

  7. def empty[S <: Sys[S], A](implicit tx: Set.empty.S.Tx, ord: Ordering[Set.empty.S.Tx, A], keySerializer: Serializer[Set.empty.S.Tx, Set.empty.S.Acc, A]): Set[S, A]

    Permalink

    Creates a new empty skip list with default minimum gap parameter of 2 and no key observer.

    Creates a new empty skip list with default minimum gap parameter of 2 and no key observer. Type parameter S specifies the STM system to use. Type parameter A specifies the type of the keys stored in the list.

    tx

    the transaction in which to initialize the structure

    ord

    the ordering of the keys. This is an instance of txn.Ordering to allow for specialized versions and transactional restrictions.

    keySerializer

    the serializer for the elements, in case a persistent STM is used.

  8. final def eq(arg0: AnyRef): Boolean

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

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

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

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

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

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

    Permalink
    Definition Classes
    AnyRef
  15. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  16. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  17. def read[S <: Sys[S], A](in: DataInput, access: Set.read.S.Acc, keyObserver: KeyObserver[Set.read.S.Tx, A] = SkipList.NoKeyObserver)(implicit tx: Set.read.S.Tx, ordering: Ordering[Set.read.S.Tx, A], keySerializer: Serializer[Set.read.S.Tx, Set.read.S.Acc, A]): Set[S, A]

    Permalink
  18. def serializer[S <: Sys[S], A](keyObserver: KeyObserver[Set.serializer.S.Tx, A] = SkipList.NoKeyObserver)(implicit ordering: Ordering[Set.serializer.S.Tx, A], keySerializer: Serializer[Set.serializer.S.Tx, Set.serializer.S.Acc, A]): Serializer[Set.serializer.S.Tx, Set.serializer.S.Acc, Set[S, A]]

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

    Permalink
    Definition Classes
    AnyRef
  20. def toString(): String

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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped