Builds a collection of typeC from elements of typeA when a source collection of typeFrom is available. Implicit instances ofBuildFrom are available for all collection types.
Type of elements (e.g.Int,Boolean, etc.)
Type of collection (e.g.List[Int],TreeMap[Int, String], etc.)
Type of source collection
Get a Builder for the collection.
Get a Builder for the collection. For non-strict collection types this will use an intermediate buffer. Building collections withfromSpecific is preferred because it can be lazy for lazy collections.
Partially apply a BuildFrom to a Factory
[Since version 2.13.0]Use newBuilder() instead of apply()