Map

@SerialVersionUID(3L)
object Map extends Delegate[[K, V] =>> Map[K, V]]

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

Companion:
class
Source:
Map.scala
class Delegate[[K, V] =>> Map[K, V]]
trait MapFactory[[K, V] =>> Map[K, V]]
class Object
trait Matchable
class Any

Type members

Classlikes

class WithDefault[K, V](val underlying: Map[K, V], val defaultValue: K => V) extends AbstractMap[K, V] with MapOps[K, V, [K, V] =>> Map[K, V], WithDefault[K, V]] with Serializable
Source:
Map.scala

Value members

Inherited methods

override def apply[K, V](elems: (K, V)*): Map[K, V]
Definition Classes
Inherited from:
Delegate
Source:
Factory.scala
def empty[K, V]: Map[K, V]
Inherited from:
Delegate
Source:
Factory.scala
def from[K, V](it: IterableOnce[(K, V)]): Map[K, V]
Inherited from:
Delegate
Source:
Factory.scala
def newBuilder[K, V]: Builder[(K, V), Map[K, V]]
Inherited from:
Delegate
Source:
Factory.scala

Implicits

Inherited implicits

implicit def mapFactory[K, V]: Factory[(K, V), Map[K, V]]

The default Factory instance for maps.

The default Factory instance for maps.

Inherited from:
MapFactory
Source:
Factory.scala