CollisionProofHashMap

This object provides a set of operations to create mutable.CollisionProofHashMap values.

Companion:
class
Source:
CollisionProofHashMap.scala

Type members

Classlikes

sealed abstract class Node
final class RBNode[K, V](var key: K, var hash: Int, var value: V, var red: Boolean, var left: RBNode[K, V], var right: RBNode[K, V], var parent: RBNode[K, V]) extends Node

Value members

Concrete methods

The default initial capacity for the hash table

The default initial capacity for the hash table

Source:
CollisionProofHashMap.scala

The default load factor for the hash table

The default load factor for the hash table

Source:
CollisionProofHashMap.scala
def newBuilder[K : Ordering, V](initialCapacity: Int, loadFactor: Double): Builder[(K, V), CollisionProofHashMap[K, V]]

Inherited methods

def apply[K : Ordering, V](elems: (K, V)*): CollisionProofHashMap[K, V]
Inherited from:
SortedMapFactory
Source:
Factory.scala

Implicits

Inherited implicits

implicit def sortedMapFactory[K : Ordering, V]: Factory[(K, V), CollisionProofHashMap[K, V]]
Inherited from:
SortedMapFactory
Source:
Factory.scala