summaryrefslogblamecommitdiff
path: root/src/library/scala/collection/parallel/mutable/ParHashTable.scala
blob: 9e356b7fb4c485f634b87076d90d42a518cc077f (plain) (tree)
























                                                                    
package scala.collection
package parallel.mutable




import collection.mutable.HashEntry




/** Provides functionality for hash tables with linked list buckets,
 *  enriching the data structure by fulfilling certain requirements
 *  for their parallel construction and iteration.
 */
trait ParHashTable[K] {

  protected type Entry >: Null <: HashEntry[K, Entry]

}