Interface MutableFloatSetFactory
- All Known Implementing Classes:
MutableFloatSetFactoryImpl
public interface MutableFloatSetFactory
A factory which creates instances of type
MutableFloatSet.
This file was automatically generated from template file mutablePrimitiveSetFactory.stg.- Since:
- 6.0.
-
Method Summary
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 Details
-
empty
MutableFloatSet empty() -
of
MutableFloatSet of()Same asempty(). -
with
MutableFloatSet with()Same asempty(). -
withInitialCapacity
Same asempty(). but takes in an initial capacity- Since:
- 10.3
-
of
Same aswith(float[]). -
with
-
ofAll
Same aswithAll(FloatIterable). -
withAll
-
ofAll
Same aswithAll(Iterable). -
withAll
-