| Package | Description |
|---|---|
| org.eclipse.collections.api |
This package contains interfaces for Eclipse Collections API.
|
| org.eclipse.collections.api.bag.sorted |
This package contains interfaces for SortedBag API.
|
| org.eclipse.collections.api.factory.list.primitive |
This package contains factory API for creating immutable primitive list instances.
|
| org.eclipse.collections.api.list |
This package contains interfaces for list API which enhance the performance and functionality of
List. |
| org.eclipse.collections.api.list.primitive |
This package contains mutable and immutable primitive list API.
|
| org.eclipse.collections.api.map |
This package contains interfaces for map API which enhance the performance and functionality of
Map |
| org.eclipse.collections.api.map.sorted |
This package contains mutable and immutable sorted map interfaces.
|
| org.eclipse.collections.api.set.sorted |
This package contains interfaces for sorted set API.
|
| Modifier and Type | Method and Description |
|---|---|
MutableFloatList |
FloatIterable.toList()
Converts the FloatIterable to a new MutableFloatList.
|
MutableFloatList |
FloatIterable.toSortedList() |
default MutableFloatList |
FloatIterable.toSortedList(FloatComparator comparator)
Converts the collection to a MutableFloatList implementation sorted using the provided comparator.
|
default <T> MutableFloatList |
FloatIterable.toSortedListBy(FloatToObjectFunction<T> function)
Converts the collection to a MutableFloatListImplementation sorted based on the natural order of the key returned
by
function. |
default <T> MutableFloatList |
FloatIterable.toSortedListBy(FloatToObjectFunction<T> function,
Comparator<? super T> comparator)
Converts the collection to a MutableFloatList implementation, which is sorted based on the key returned by
function using the provided comparator. |
| Modifier and Type | Method and Description |
|---|---|
MutableFloatList |
MutableSortedBag.collectFloat(FloatFunction<? super T> floatFunction) |
| Modifier and Type | Method and Description |
|---|---|
MutableFloatList |
MutableFloatListFactory.empty() |
MutableFloatList |
MutableFloatListFactory.of()
Same as
MutableFloatListFactory.empty(). |
MutableFloatList |
MutableFloatListFactory.of(float... items)
|
MutableFloatList |
MutableFloatListFactory.ofAll(FloatIterable items)
|
MutableFloatList |
MutableFloatListFactory.ofAll(Iterable<Float> iterable)
|
MutableFloatList |
MutableFloatListFactory.with()
Same as
MutableFloatListFactory.empty(). |
MutableFloatList |
MutableFloatListFactory.with(float... items)
Creates a new list using the passed
items argument as the backing store. |
MutableFloatList |
MutableFloatListFactory.withAll(FloatIterable items) |
MutableFloatList |
MutableFloatListFactory.withAll(Iterable<Float> iterable) |
default MutableFloatList |
MutableFloatListFactory.withInitialCapacity(int capacity)
Same as
MutableFloatListFactory.empty(). |
default MutableFloatList |
MutableFloatListFactory.wrapCopy(float... array)
Creates a new list by first copying the array passed in.
|
| Modifier and Type | Method and Description |
|---|---|
default MutableFloatList |
MutableList.collectFloat(FloatFunction<? super T> floatFunction) |
| Modifier and Type | Method and Description |
|---|---|
MutableFloatList |
MutableFloatList.asSynchronized() |
MutableFloatList |
MutableFloatList.asUnmodifiable() |
MutableFloatList |
MutableFloatList.distinct() |
default MutableFloatList |
MutableFloatList.newEmpty()
Creates a new empty mutable version of the same List type.
|
MutableFloatList |
MutableFloatList.reject(FloatPredicate predicate) |
default MutableFloatList |
MutableFloatList.rejectWithIndex(FloatIntPredicate predicate)
Returns a new MutableFloatList excluding all elements with corresponding indexes matching the specified predicate.
|
MutableFloatList |
MutableFloatList.reverseThis() |
MutableFloatList |
MutableFloatList.select(FloatPredicate predicate) |
default MutableFloatList |
MutableFloatList.selectWithIndex(FloatIntPredicate predicate)
Returns a new MutableFloatList including all elements with corresponding indexes matching the specified predicate.
|
default MutableFloatList |
MutableFloatList.shuffleThis()
Randomly permutes this list mutating its contents and returns the same list (this).
|
default MutableFloatList |
MutableFloatList.shuffleThis(Random rnd)
Randomly permutes this list mutating its contents and returns the same list (this).
|
MutableFloatList |
MutableFloatList.sortThis()
Sorts this list mutating its contents and returns the same mutable list (this).
|
default MutableFloatList |
MutableFloatList.sortThis(FloatComparator comparator)
Sorts the internal data structure of this list and returns the list itself as a convenience.
|
default <T> MutableFloatList |
MutableFloatList.sortThisBy(FloatToObjectFunction<T> function)
Sorts the internal data structure of this list based on the natural order of the key returned by
function. |
default <T> MutableFloatList |
MutableFloatList.sortThisBy(FloatToObjectFunction<T> function,
Comparator<? super T> comparator)
Sorts the internal data structure of this list based on the key returned by
function using the provided comparator. |
MutableFloatList |
MutableFloatList.subList(int fromIndex,
int toIndex) |
default MutableFloatList |
MutableFloatList.tap(FloatProcedure procedure) |
MutableFloatList |
MutableFloatList.toReversed() |
MutableFloatList |
MutableFloatList.with(float element) |
MutableFloatList |
MutableFloatList.withAll(FloatIterable elements) |
MutableFloatList |
MutableFloatList.without(float element) |
MutableFloatList |
MutableFloatList.withoutAll(FloatIterable elements) |
| Modifier and Type | Method and Description |
|---|---|
MutableFloatList |
MutableOrderedMap.collectFloat(FloatFunction<? super V> floatFunction) |
| Modifier and Type | Method and Description |
|---|---|
MutableFloatList |
MutableSortedMap.collectFloat(FloatFunction<? super V> floatFunction) |
| Modifier and Type | Method and Description |
|---|---|
MutableFloatList |
MutableSortedSet.collectFloat(FloatFunction<? super T> floatFunction) |
Copyright © 2004–2023. All rights reserved.