scala.collection.generic.SortedSetFactory#SortedSetCanBuildFrom

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

Instance Constructors From scala.collection.generic.SortedSetFactory.SortedSetCanBuildFrom ——————————————————————————–

new SortedSetCanBuildFrom()(implicit ord: Ordering[A])

(defined at scala.collection.generic.SortedSetFactory.SortedSetCanBuildFrom)


Value Members From scala.collection.generic.SortedSetFactory.SortedSetCanBuildFrom ——————————————————————————–

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

Creates a new builder from scratch.

  • returns
    • a builder for collections of type To with element type Elem .
  • Definition Classes
    • SortedSetCanBuildFrom → CanBuildFrom
  • See also
    • scala.collection.breakOut

(defined at scala.collection.generic.SortedSetFactory.SortedSetCanBuildFrom)

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

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
    • SortedSetCanBuildFrom → CanBuildFrom

(defined at scala.collection.generic.SortedSetFactory.SortedSetCanBuildFrom)


Value Members From Implicit scala.collection.parallel.CollectionsHaveToParArray ——————————————————————————–

def toParArray: ParArray[T]

  • Implicit information
    • 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 (added by implicit convertion: scala.collection.parallel.CollectionsHaveToParArray)

Full Source:

/*                     __                                               *\
**     ________ ___   / /  ___     Scala API                            **
**    / __/ __// _ | / /  / _ |    (c) 2006-2013, LAMP/EPFL             **
**  __\ \/ /__/ __ |/ /__/ __ |    http://scala-lang.org/               **
** /____/\___/_/ |_/____/_/ | |                                         **
**                          |/                                          **
\*                                                                      */



package scala
package collection
package generic

import mutable.{Builder, SetBuilder}
import scala.language.higherKinds

/** A template for companion objects of Set and subclasses thereof.
 *
 *  @since 2.8
 */
abstract class SortedSetFactory[CC[A] <: SortedSet[A] with SortedSetLike[A, CC[A]]] {
  type Coll = CC[_]

  def empty[A](implicit ord: Ordering[A]): CC[A]

  def apply[A](elems: A*)(implicit ord: Ordering[A]): CC[A] = (newBuilder[A](ord) ++= elems).result()

  def newBuilder[A](implicit ord: Ordering[A]): Builder[A, CC[A]] = new SetBuilder[A, CC[A]](empty)

  implicit def newCanBuildFrom[A](implicit ord : Ordering[A]) : CanBuildFrom[Coll, A, CC[A]] = new SortedSetCanBuildFrom()(ord)

  class SortedSetCanBuildFrom[A](implicit ord: Ordering[A]) extends CanBuildFrom[Coll, A, CC[A]] {
    def apply(from: Coll) = newBuilder[A](ord)
    def apply() = newBuilder[A](ord)
  }
}