Package

scala

collection

Permalink

package collection

Linear Supertypes
Content Hierarchy Learn more about scaladoc diagrams
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 SetFacade[A]

    Permalink

    Wraps the Traversable t to a Set utilizing reference equality.

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

  2. trait FilterableSet[A] extends AnyRef

    Permalink

    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.

  3. final class FilteredSet[A] extends collection.immutable.Set[A] with FilterableSet[A]

    Permalink

    A Set implementation extended by FilterableSet.

  4. final class SeqFacade[A] extends Seq[A]

    Permalink

    Wraps t to a Seq.

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

  5. class SetFacade[A] extends collection.immutable.Set[A]

    Permalink

    Wraps the Traversable t to a Set.

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

Value Members

  1. object Abstract

    Permalink

    Contains types that increase access to some private[scala] members of scala.collection in order to make them reusable in any package.

  2. object Util

    Permalink
  3. def breakOut[From, T, To](implicit b: CanBuildFrom[Nothing, T, To]): CanBuildFrom[From, T, To]

    Permalink

Inherited from AnyRef

Inherited from Any

Ungrouped