Packages

p

scala

collection

package collection

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. collection
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. final class EqSetFacade[A <: AnyRef] extends collection.immutable.Set[A] with InclExcl[A, collection.immutable.Set[A]]

    Wraps the Iterable i to a Set utilizing reference equality.

    Wraps the Iterable i to a Set utilizing reference equality. It aims at efficiently creating a set in case the caller ensures that all elements in i are unique. + and - are O(N) returning scala.collection.immutable.Set.

  2. trait ExtSetMethods[A] extends FilterableSet[A]
  3. trait FilterableSet[A] extends AnyRef

    Template for sets having a withFilter that keeps Set semantics.

    Template for sets having a withFilter that keeps Set semantics. This class becomes obsolete as soon as scala.collection.Set.withFilter returns a Set instead of just FilterMonadic.

  4. final class FilteredSet[A] extends collection.immutable.Set[A] with FilterableSet[A] with InclExcl[A, collection.immutable.Set[A]]

    A Set implementation extended by FilterableSet.

  5. final class SeqFacade[+A] extends collection.immutable.Seq[A]

    Wraps the Iterable i to a Seq.

    Wraps the Iterable i to a Seq. It helps to avoid the creation of a copy of the elements of i when passing i to repeated parameters of type A. apply is O(N).

Value Members

  1. def breakOut[From, T, To](implicit b: CanBuildFrom[Nothing, T, To]): CanBuildFrom[From, T, To]
  2. object Util

Inherited from AnyRef

Inherited from Any

Ungrouped