Packages

c

scala.collection.generic

SortedSetFactory

abstract class SortedSetFactory[CC[A] <: SortedSet[A] with SortedSetLike[A, CC[A]]] extends AnyRef

A template for companion objects of Set and subclasses thereof.

Source
SortedSetFactory.scala
Since

2.8

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SortedSetFactory
  2. AnyRef
  3. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new SortedSetFactory()

Type Members

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

Abstract Value Members

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

Concrete Value Members

  1. def apply[A](elems: A*)(implicit ord: Ordering[A]): CC[A]
  2. def newBuilder[A](implicit ord: Ordering[A]): Builder[A, CC[A]]
  3. implicit def newCanBuildFrom[A](implicit ord: Ordering[A]): CanBuildFrom[Coll, A, CC[A]]