Interface MutableDoubleSetFactory
- All Known Implementing Classes:
MutableDoubleSetFactoryImpl
public interface MutableDoubleSetFactory
A factory which creates instances of type
MutableDoubleSet.
This file was automatically generated from template file mutablePrimitiveSetFactory.stg.- Since:
- 6.0.
-
Method Summary
Modifier and Type Method Description MutableDoubleSetempty()MutableDoubleSetof()Same asempty().MutableDoubleSetof(double... items)Same aswith(double[]).MutableDoubleSetofAll(Iterable<Double> iterable)Same aswithAll(Iterable).MutableDoubleSetofAll(DoubleStream items)MutableDoubleSetofAll(DoubleIterable items)Same aswithAll(DoubleIterable).MutableDoubleSetwith()Same asempty().MutableDoubleSetwith(double... items)MutableDoubleSetwithAll(Iterable<Double> iterable)MutableDoubleSetwithAll(DoubleStream items)MutableDoubleSetwithAll(DoubleIterable items)default MutableDoubleSetwithInitialCapacity(int capacity)Same asempty().
-
Method Details
-
empty
MutableDoubleSet empty() -
of
MutableDoubleSet of()Same asempty(). -
with
MutableDoubleSet with()Same asempty(). -
withInitialCapacity
Same asempty(). but takes in an initial capacity- Since:
- 10.3
-
of
Same aswith(double[]). -
with
-
ofAll
Same aswithAll(DoubleIterable). -
withAll
-
ofAll
Same aswithAll(Iterable). -
withAll
-
ofAll
- Since:
- 9.0
-
withAll
- Since:
- 9.0
-