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 TypeMethodDescriptionempty()
of()
Same asempty()
.of
(float... items) Same aswith(float[])
.Same aswithAll(Iterable)
.ofAll
(FloatIterable items) Same aswithAll(FloatIterable)
.with()
Same asempty()
.with
(float... items) withAll
(FloatIterable items) default MutableFloatSet
withInitialCapacity
(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
-