Interface MutableFloatListFactory
public interface MutableFloatListFactory
A factory which creates instances of type
MutableFloatList.
This file was automatically generated from template file mutablePrimitiveListFactory.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) Creates a new list using the passeditemsargument as the backing store.withAll(FloatIterable items) default MutableFloatListwithInitialCapacity(int capacity) Same asempty(). but takes in an initial capacitydefault MutableFloatListwrapCopy(float... array) Creates a new list by first copying the array passed in.
-
Method Details
-
empty
MutableFloatList empty() -
of
MutableFloatList of()Same asempty(). -
with
MutableFloatList with()Same asempty(). -
withInitialCapacity
Same asempty(). but takes in an initial capacity- Since:
- 10.3
-
of
Same aswith(float[]). -
with
Creates a new list using the passeditemsargument as the backing store.!!! WARNING: This method uses the passed in array, so can be very unsafe if the original array is held onto anywhere else. !!!
-
wrapCopy
Creates a new list by first copying the array passed in. -
ofAll
Same aswithAll(FloatIterable). -
withAll
-
ofAll
Same aswithAll(Iterable). -
withAll
-