trait ParHashTable[K, V, Entry >: Null <: HashEntry[K, Entry]] extends HashTable[K, V, Entry] with WithContents[K, V, Entry]
Provides functionality for hash tables with linked list buckets, enriching the data structure by fulfilling certain requirements for their parallel construction and iteration.
Linear Supertypes
Known Subclasses
Ordering
- Alphabetic
- By Inheritance
Inherited
- ParHashTable
- WithContents
- HashTable
- HashUtils
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Type Members
- abstract class EntryIterator[T, +IterRepr <: IterableSplitter[T]] extends IterableSplitter[T] with SizeMapUtils
A parallel iterator returning all the entries.
Abstract Value Members
- abstract def createNewEntry(key: K, value: V): Entry
- Definition Classes
- HashTable
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
- val _loadFactor: Int
- Attributes
- protected
- Definition Classes
- HashTable
- final def addEntry(e: Entry): Unit
- Attributes
- protected[scala.collection]
- Definition Classes
- HashTable
- final def addEntry0(e: Entry, h: Int): Unit
- Attributes
- protected[scala.collection]
- Definition Classes
- HashTable
- def alwaysInitSizeMap: Boolean
- Definition Classes
- ParHashTable → HashTable
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- final def calcSizeMapSize(tableLength: Int): Int
- Attributes
- protected
- Definition Classes
- HashTable
- def clearTable(): Unit
- Definition Classes
- HashTable
- def clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- def elemEquals(key1: K, key2: K): Boolean
- Attributes
- protected
- Definition Classes
- HashTable
- def elemHashCode(key: K): Int
- Attributes
- protected[scala.collection]
- Definition Classes
- HashUtils
- def entriesIterator: Iterator[Entry]
- Definition Classes
- HashTable
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def findEntry(key: K): Entry
- Definition Classes
- HashTable
- final def findEntry0(key: K, h: Int): Entry
- Attributes
- protected[scala.collection]
- Definition Classes
- HashTable
- def findOrAddEntry(key: K, value: V): Entry
- Definition Classes
- HashTable
- def foreachEntry[U](f: (Entry) => U): Unit
- Definition Classes
- HashTable
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def improve(hcode: Int, seed: Int): Int
- Attributes
- protected
- Definition Classes
- HashUtils
- final def index(hcode: Int): Int
- Attributes
- protected[scala.collection]
- Definition Classes
- HashTable
- def initWithContents(c: Contents[K, Entry]): Unit
- Attributes
- protected
- Definition Classes
- WithContents
- def initialSize: Int
- Attributes
- protected
- Definition Classes
- HashTable
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def isSizeMapDefined: Boolean
- Attributes
- protected
- Definition Classes
- HashTable
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def nnSizeMapAdd(h: Int): Unit
- Attributes
- protected
- Definition Classes
- HashTable
- final def nnSizeMapRemove(h: Int): Unit
- Attributes
- protected
- Definition Classes
- HashTable
- final def nnSizeMapReset(tableLength: Int): Unit
- Attributes
- protected
- Definition Classes
- HashTable
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def removeEntry(key: K): Entry
- Definition Classes
- HashTable
- val seedvalue: Int
- Attributes
- protected
- Definition Classes
- HashTable
- final def size: Int
- Definition Classes
- HashTable
- final def sizeMapBucketBitSize: Int
- Attributes
- protected
- Definition Classes
- HashUtils
- final def sizeMapBucketSize: Int
- Attributes
- protected
- Definition Classes
- HashUtils
- final def sizeMapDisable(): Unit
- Attributes
- protected
- Definition Classes
- HashTable
- def sizeMapInit(tableLength: Int): Unit
- Attributes
- protected
- Definition Classes
- HashTable
- final def sizeMapInitAndRebuild(): Unit
- Attributes
- protected
- Definition Classes
- HashTable
- val sizemap: Array[Int]
- Attributes
- protected
- Definition Classes
- HashTable
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- val table: Array[HashEntry[K, Entry]]
- Attributes
- protected[scala.collection]
- Definition Classes
- HashTable
- val tableSize: Int
- Attributes
- protected[scala.collection]
- Definition Classes
- HashTable
- def tableSizeSeed: Int
- Attributes
- protected
- Definition Classes
- HashTable
- val threshold: Int
- Attributes
- protected[scala.collection]
- Definition Classes
- HashTable
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- 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()