Interface MutableFloatSetFactory
-
public interface MutableFloatSetFactoryA factory which creates instances of typeMutableFloatSet. 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 MutableFloatSetempty()MutableFloatSetof()Same asempty().MutableFloatSetof(float... items)Same aswith(float[]).MutableFloatSetofAll(Iterable<Float> iterable)Same aswithAll(Iterable).MutableFloatSetofAll(FloatIterable items)Same aswithAll(FloatIterable).MutableFloatSetwith()Same asempty().MutableFloatSetwith(float... items)MutableFloatSetwithAll(Iterable<Float> iterable)MutableFloatSetwithAll(FloatIterable items)default MutableFloatSetwithInitialCapacity(int capacity)Same asempty().
-
-
-
Method Detail
-
empty
MutableFloatSet empty()
-
of
MutableFloatSet of()
Same asempty().
-
with
MutableFloatSet with()
Same asempty().
-
withInitialCapacity
default MutableFloatSet withInitialCapacity(int capacity)
Same asempty(). but takes in an initial capacity- Since:
- 10.3
-
of
MutableFloatSet of(float... items)
Same aswith(float[]).
-
with
MutableFloatSet with(float... items)
-
ofAll
MutableFloatSet ofAll(FloatIterable items)
Same aswithAll(FloatIterable).
-
withAll
MutableFloatSet withAll(FloatIterable items)
-
ofAll
MutableFloatSet ofAll(Iterable<Float> iterable)
Same aswithAll(Iterable).
-
withAll
MutableFloatSet withAll(Iterable<Float> iterable)
-
-