Packages

object SortedSet extends ImmutableSortedSetFactory[SortedSet]

This object provides a set of operations needed to create sorted sets of type immutable.SortedSet.

Source
SortedSet.scala
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SortedSet
  2. ImmutableSortedSetFactory
  3. SortedSetFactory
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

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

Value Members

  1. def apply[A](elems: A*)(implicit ord: Ordering[A]): SortedSet[A]
    Definition Classes
    SortedSetFactory
  2. def canBuildFrom[A](implicit ord: Ordering[A]): CanBuildFrom[Coll, A, SortedSet[A]]

    The standard CanBuildFrom instance for sorted sets

  3. def empty[A](implicit ord: Ordering[A]): SortedSet[A]
    Definition Classes
    SortedSetSortedSetFactory
  4. def newBuilder[A](implicit ord: Ordering[A]): Builder[A, SortedSet[A]]
    Definition Classes
    SortedSetFactory
  5. implicit def newCanBuildFrom[A](implicit ord: Ordering[A]): CanBuildFrom[Coll, A, SortedSet[A]]
    Definition Classes
    SortedSetSortedSetFactory