MapFactory

scala.collection.MapFactory
See theMapFactory companion object
trait MapFactory[+CC[_, _]] extends Serializable

Attributes

Companion
object
Graph
Supertypes
trait Serializable
class Object
trait Matchable
class Any
Known subtypes
object TrieMap
object HashMap
object ListMap
object Map
object SeqMap
object TreeSeqMap
object VectorMap
object HashMap
object LinkedHashMap
object ListMap
object OpenHashMap
object WeakHashMap
class Delegate[C]
object Map
object SeqMap
object Map
object SeqMap
object MapView
Show all
Self type

Members list

Value members

Abstract methods

def empty[K, V]: CC[K, V]

An empty Map

An empty Map

Attributes

def from[K, V](it: IterableOnce[(K, V)]^): CC[K, V]^{it}

A collection of type Map generated from given iterable object.

A collection of type Map generated from given iterable object.

Attributes

def fromSpecific(from: From)(it: IterableOnce[A]^): C^{it}
Implicitly added by toBuildFrom
def fromSpecific(it: IterableOnce[A]^): C^{it}
Implicitly added by toFactory

Value parameters

it

Source collection

Attributes

Returns

A collection of type C containing the same elements as the source collection it.

def newBuilder(from: From): Builder[A, C]
Implicitly added by toBuildFrom

Get a Builder for the collection. For non-strict collection types this will use an intermediate buffer. Building collections with fromSpecific is preferred because it can be lazy for lazy collections.

Get a Builder for the collection. For non-strict collection types this will use an intermediate buffer. Building collections with fromSpecific is preferred because it can be lazy for lazy collections.

Attributes

def newBuilder: Builder[A, C]
Implicitly added by toFactory

Get a Builder for the collection. For non-strict collection types this will use an intermediate buffer. Building collections with fromSpecific is preferred because it can be lazy for lazy collections.

Get a Builder for the collection. For non-strict collection types this will use an intermediate buffer. Building collections with fromSpecific is preferred because it can be lazy for lazy collections.

Attributes

def newBuilder[K, V]: Builder[(K, V), CC[K, V]]

The default builder for Map objects.

The default builder for Map objects.

Attributes

Concrete methods

def apply[K, V](elems: (K, V)*): CC[K, V]

A collection of type Map that contains given key/value bindings.

A collection of type Map that contains given key/value bindings.

Attributes

def toFactory(from: From): Factory[A, C]
Implicitly added by toBuildFrom

Partially apply a BuildFrom to a Factory

Partially apply a BuildFrom to a Factory

Attributes

Deprecated methods

def apply(from: From): Builder[A, C]
Implicitly added by toBuildFrom

Attributes

Deprecated
[Since version 2.13.0] Use newBuilder() instead of apply()

Implicits

Implicits

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

The default Factory instance for maps.

The default Factory instance for maps.

Attributes