Package

scala

collection

Permalink

package collection

Linear Supertypes
AnyRef, Any
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. trait BuildFrom[-From, -A, +C] extends Any

    Permalink

    Builds a collection of type C from elements of type A when a source collection of type From is available.

    Builds a collection of type C from elements of type A when a source collection of type From is available. Implicit instances of BuildFrom are available for all collection types.

    From

    Type of source collection

    A

    Type of elements (e.g. Int, Boolean, etc.)

    C

    Type of collection (e.g. List[Int], TreeMap[Int, String], etc.)

  2. trait Factory[-A, +C] extends Any

    Permalink

    A factory that builds a collection of type C with elements of type A.

    A factory that builds a collection of type C with elements of type A.

    A

    Type of elements (e.g. Int, Boolean, etc.)

    C

    Type of collection (e.g. List[Int], TreeMap[Int, String], etc.)

Value Members

  1. object BuildFrom

    Permalink
  2. object Factory

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

    Permalink
  4. package compat

    Permalink

    The collection compatibility API

  5. package immutable

    Permalink

Inherited from AnyRef

Inherited from Any

Ungrouped