public interface MutableFloatListFactory
MutableFloatList.
This file was automatically generated from template file mutablePrimitiveListFactory.stg.| Modifier and Type | Method and Description |
|---|---|
MutableFloatList |
empty() |
MutableFloatList |
of()
Same as
empty(). |
MutableFloatList |
of(float... items)
Same as
with(float[]). |
MutableFloatList |
ofAll(FloatIterable items)
Same as
withAll(FloatIterable). |
MutableFloatList |
ofAll(Iterable<Float> iterable)
Same as
withAll(Iterable). |
MutableFloatList |
with()
Same as
empty(). |
MutableFloatList |
with(float... items)
Creates a new list using the passed
items argument as the backing store. |
MutableFloatList |
withAll(FloatIterable items) |
MutableFloatList |
withAll(Iterable<Float> iterable) |
default MutableFloatList |
withInitialCapacity(int capacity)
Same as
empty(). |
default MutableFloatList |
wrapCopy(float... array)
Creates a new list by first copying the array passed in.
|
MutableFloatList empty()
MutableFloatList of()
empty().MutableFloatList with()
empty().default MutableFloatList withInitialCapacity(int capacity)
empty(). but takes in an initial capacityMutableFloatList of(float... items)
with(float[]).MutableFloatList with(float... items)
items argument 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. !!!
default MutableFloatList wrapCopy(float... array)
MutableFloatList ofAll(FloatIterable items)
withAll(FloatIterable).MutableFloatList withAll(FloatIterable items)
MutableFloatList ofAll(Iterable<Float> iterable)
withAll(Iterable).MutableFloatList withAll(Iterable<Float> iterable)
Copyright © 2004–2022. All rights reserved.