Packages

c

scala.collection.generic

ImmutableSortedSetFactory

abstract class ImmutableSortedSetFactory[CC[A] <: immutable.SortedSet[A] with SortedSetLike[A, CC[A]]] extends SortedSetFactory[CC]

A template for companion objects of SortedSet and subclasses thereof.

Source
ImmutableSortedSetFactory.scala
Since

2.8

Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ImmutableSortedSetFactory
  2. SortedSetFactory
  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 ImmutableSortedSetFactory()

Type Members

  1. type Coll = CC[_]
    Definition Classes
    SortedSetFactory
  2. class SortedSetCanBuildFrom[A] extends CanBuildFrom[Coll, A, CC[A]]
    Definition Classes
    SortedSetFactory

Abstract Value Members

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

Concrete Value Members

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