Interface MutableDoubleSetFactory
-
public interface MutableDoubleSetFactoryA factory which creates instances of typeMutableDoubleSet. This file was automatically generated from template file mutablePrimitiveSetFactory.stg.- Since:
- 6.0.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods 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 Detail
-
empty
MutableDoubleSet empty()
-
of
MutableDoubleSet of()
Same asempty().
-
with
MutableDoubleSet with()
Same asempty().
-
withInitialCapacity
default MutableDoubleSet withInitialCapacity(int capacity)
Same asempty(). but takes in an initial capacity- Since:
- 10.3
-
of
MutableDoubleSet of(double... items)
Same aswith(double[]).
-
with
MutableDoubleSet with(double... items)
-
ofAll
MutableDoubleSet ofAll(DoubleIterable items)
Same aswithAll(DoubleIterable).
-
withAll
MutableDoubleSet withAll(DoubleIterable items)
-
ofAll
MutableDoubleSet ofAll(Iterable<Double> iterable)
Same aswithAll(Iterable).
-
withAll
MutableDoubleSet withAll(Iterable<Double> iterable)
-
ofAll
MutableDoubleSet ofAll(DoubleStream items)
- Since:
- 9.0
-
withAll
MutableDoubleSet withAll(DoubleStream items)
- Since:
- 9.0
-
-