scala.collection.Factory
See theFactory companion object
A factory that builds a collection of type C
with elements of type A
.
This is a general form of any factory (IterableFactory, SortedIterableFactory, MapFactory and SortedMapFactory) whose element type is fixed.
Type parameters
- A
-
Type of elements (e.g.
Int
,Boolean
, etc.) - C
-
Type of collection (e.g.
List[Int]
,TreeMap[Int, String]
, etc.)
Attributes
- Companion
- object
- Source
- Factory.scala
- Graph
-
- Supertypes
-
class Any
- Known subtypes
-
object BitSetobject WrappedStringobject BitSetobject BitSetobject DoubleAccumulatorobject IntAccumulatorobject LongAccumulatorobject ValueSet
Members list
In this article