scala.collection.immutable
package scala.collection.immutable
Members list
Type members
Classlikes
sealed abstract class OldHashMap[K, +V] extends AbstractMap[K, V], MapOps[K, V, OldHashMap, OldHashMap[K, V]], StrictOptimizedIterableOps[(K, V), Iterable, OldHashMap[K, V]], StrictOptimizedMapOps[K, V, OldHashMap, OldHashMap[K, V]], MapFactoryDefaults[K, V, OldHashMap, Iterable], Serializable
This class implements immutable maps using a hash trie.
This class implements immutable maps using a hash trie.
'''Note:''' The builder of this hash map may return specialized representations for small maps.
Type parameters
- K
-
the type of the keys contained in this hash map.
- V
-
the type of the values associated with the keys.
Attributes
- See also
-
"Scala's Collection Library overview" section on
Hash Tries
for more information. - Companion
- object
- Supertypes
- Known subtypes
-
object OldHashMap extends MapFactory[OldHashMap]
$factoryInfo
sealed abstract class OldHashSet[A] extends AbstractSet[A], SetOps[A, OldHashSet, OldHashSet[A]], StrictOptimizedIterableOps[A, OldHashSet, OldHashSet[A]], IterableFactoryDefaults[A, OldHashSet], Serializable
This class implements immutable sets using a hash trie.
This class implements immutable sets using a hash trie.
'''Note:''' The builder of this hash set may return specialized representations for small sets.
Type parameters
- A
-
the type of the elements contained in this hash set.
Attributes
- Companion
- object
- Supertypes
-
trait Serializableclass AbstractSet[A]trait Set[A]trait Iterable[A]class AbstractSet[A]trait Set[A]trait Equalsclass AbstractIterable[A]trait Iterable[A]trait IterableOnce[A]class Objecttrait Matchableclass AnyShow all
object OldHashSet extends IterableFactory[OldHashSet]
$factoryInfo
In this article