BuildFrom

scala.collection.BuildFrom
See theBuildFrom companion trait

Attributes

Companion
trait
Source
BuildFrom.scala
Graph
Supertypes
Self type
BuildFrom.type

Members list

Implicits

Implicits

implicit def buildFromArray[A : ClassTag]: BuildFrom[Array[_], A, Array[A]]

Attributes

Source
BuildFrom.scala
implicit def buildFromBitSet[C <: BitSet & BitSetOps[LazyRef(...)]]: BuildFrom[C, Int, C]

Attributes

Source
BuildFrom.scala
implicit def buildFromMapOps[CC <: ([X, Y] =>> Map[X, Y] & MapOps[X, Y, LazyRef(...), _]), K0, V0, K, V]: BuildFrom[CC[K0, V0] & Map[K0, V0], (K, V), CC[K, V] & Map[K, V]]

Build the source collection type from a MapOps

Build the source collection type from a MapOps

Attributes

Source
BuildFrom.scala
implicit def buildFromSortedMapOps[CC <: ([X, Y] =>> SortedMap[X, Y] & SortedMapOps[X, Y, LazyRef(...), _]), K0, V0, K : Ordering, V]: BuildFrom[CC[K0, V0] & SortedMap[K0, V0], (K, V), CC[K, V] & SortedMap[K, V]]

Build the source collection type from a SortedMapOps

Build the source collection type from a SortedMapOps

Attributes

Source
BuildFrom.scala

Attributes

Source
BuildFrom.scala
implicit def buildFromView[A, B]: BuildFrom[View[A], B, View[B]]

Attributes

Source
BuildFrom.scala

Inherited implicits

implicit def buildFromIterableOps[CC <: ([X] =>> Iterable[X] & IterableOps[X, LazyRef(...), _]), A0, A]: BuildFrom[CC[A0], A, CC[A]]

Build the source collection type from an IterableOps

Build the source collection type from an IterableOps

Attributes

Inherited from:
BuildFromLowPriority2
Source
BuildFrom.scala
implicit def buildFromIterator[A]: BuildFrom[Iterator[_], A, Iterator[A]]

Attributes

Inherited from:
BuildFromLowPriority2
Source
BuildFrom.scala
implicit def buildFromSortedSetOps[CC <: ([X] =>> SortedSet[X] & SortedSetOps[X, LazyRef(...), _]), A0, A : Ordering]: BuildFrom[CC[A0] & SortedSet[A0], A, CC[A] & SortedSet[A]]

Build the source collection type from an Iterable with SortedOps

Build the source collection type from an Iterable with SortedOps

Attributes

Inherited from:
BuildFromLowPriority1
Source
BuildFrom.scala

Attributes

Inherited from:
BuildFromLowPriority1
Source
BuildFrom.scala