Packages

class SortedSetCanBuildFrom[A] extends CanBuildFrom[Coll, A, CC[A]]

Source
SortedSetFactory.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SortedSetCanBuildFrom
  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 SortedSetCanBuildFrom()(implicit ord: Ordering[A])

Value Members

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

    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
    SortedSetCanBuildFromCanBuildFrom
    See also

    scala.collection.breakOut

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

    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
    SortedSetCanBuildFromCanBuildFrom
  3. def toParArray: ParArray[T]
    Implicit
    This member is added by an implicit conversion from SortedSetCanBuildFrom[A] to CollectionsHaveToParArray[SortedSetCanBuildFrom[A], T] performed by method CollectionsHaveToParArray in scala.collection.parallel. This conversion will take place only if an implicit value of type (SortedSetCanBuildFrom[A]) ⇒ GenTraversableOnce[T] is in scope.
    Definition Classes
    CollectionsHaveToParArray