Packages

c

scala.collection.generic

MutableSortedMapFactory

abstract class MutableSortedMapFactory[CC[A, B] <: mutable.SortedMap[A, B] with SortedMapLike[A, B, CC[A, B]]] extends SortedMapFactory[CC]

A template for companion objects of SortedMap and subclasses thereof.

CC

the type of the collection.

Source
MutableSortedMapFactory.scala
Version

2.12

Since

2.12

Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. MutableSortedMapFactory
  2. SortedMapFactory
  3. AnyRef
  4. Any
Implicitly
  1. by CollectionsHaveToParArray
  2. by any2stringadd
  3. by StringFormat
  4. by Ensuring
  5. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new MutableSortedMapFactory()

Type Members

  1. type Coll = CC[_, _]
    Definition Classes
    SortedMapFactory
  2. class SortedMapCanBuildFrom[A, B] extends CanBuildFrom[Coll, (A, B), CC[A, B]]
    Definition Classes
    SortedMapFactory

Abstract Value Members

  1. abstract def empty[A, B](implicit ord: Ordering[A]): CC[A, B]
    Definition Classes
    SortedMapFactory

Concrete Value Members

  1. def apply[A, B](elems: (A, B)*)(implicit ord: Ordering[A]): CC[A, B]
    Definition Classes
    SortedMapFactory
  2. def newBuilder[A, B](implicit ord: Ordering[A]): Builder[(A, B), CC[A, B]]
    Definition Classes
    SortedMapFactory
  3. def toParArray: ParArray[T]
    Implicit
    This member is added by an implicit conversion from MutableSortedMapFactory[CC] to CollectionsHaveToParArray[MutableSortedMapFactory[CC], T] performed by method CollectionsHaveToParArray in scala.collection.parallel. This conversion will take place only if an implicit value of type (MutableSortedMapFactory[CC]) ⇒ GenTraversableOnce[T] is in scope.
    Definition Classes
    CollectionsHaveToParArray