object EvidenceIterableFactory
- Companion
- class
- Source
- Factory.scala
Type members
Classlikes
@SerialVersionUID(3L)
class Delegate[CC[_], Ev[_]](delegate: EvidenceIterableFactory[CC, Ev]) extends EvidenceIterableFactory[CC, Ev]
- Source
- Factory.scala
Implicits
Implicits
implicit def toBuildFrom[Ev[_], A, CC[_]](factory: EvidenceIterableFactory[CC, Ev])(implicit evidence$35: Ev[A]): BuildFrom[Any, A, CC[A]]
- Source
- Factory.scala
implicit def toFactory[Ev[_], A, CC[_]](factory: EvidenceIterableFactory[CC, Ev])(implicit evidence$33: Ev[A]): Factory[A, CC[A]]
Fixes the element type of factory
to A
Fixes the element type of factory
to A
- Type Params
- A
Type of elements
- CC
Collection type constructor of the factory (e.g.
TreeSet
)- Ev
Type constructor of the evidence (usually
Ordering
orClassTag
)
- Value Params
- factory
The factory to fix the element type
- Returns
A Factory that uses the given
factory
to build a collection of elements of typeA
- Source
- Factory.scala