Packages

class SortedMapCanBuildFrom[A, B] extends CanBuildFrom[Coll, (A, B), CC[A, B]]

Source
SortedMapFactory.scala
Linear Supertypes
CanBuildFrom[Coll, (A, B), CC[A, B]], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SortedMapCanBuildFrom
  2. CanBuildFrom
  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 SortedMapCanBuildFrom()(implicit ord: Ordering[A])

Value Members

  1. def apply(): Builder[(A, B), CC[A, B]]

    Creates a new builder from scratch.

    Creates a new builder from scratch.

    returns

    a builder for collections of type To with element type Elem.

    Definition Classes
    SortedMapCanBuildFromCanBuildFrom
    See also

    scala.collection.breakOut

  2. def apply(from: Coll): Builder[(A, B), CC[A, B]]

    Creates a new builder on request of a collection.

    Creates a new builder on request of a collection.

    from

    the collection requesting the builder to be created.

    returns

    a builder for collections of type To with element type Elem. The collections framework usually arranges things so that the created builder will build the same kind of collection as from.

    Definition Classes
    SortedMapCanBuildFromCanBuildFrom
  3. def toParArray: ParArray[T]
    Implicit
    This member is added by an implicit conversion from SortedMapCanBuildFrom[A, B] to CollectionsHaveToParArray[SortedMapCanBuildFrom[A, B], T] performed by method CollectionsHaveToParArray in scala.collection.parallel. This conversion will take place only if an implicit value of type (SortedMapCanBuildFrom[A, B]) ⇒ GenTraversableOnce[T] is in scope.
    Definition Classes
    CollectionsHaveToParArray