| 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 |
|---|---|
MutableIntList |
IntIterable.toList()
Converts the IntIterable to a new MutableIntList.
|
MutableIntList |
IntIterable.toSortedList() |
default MutableIntList |
IntIterable.toSortedList(IntComparator comparator)
Converts the collection to a MutableIntList implementation sorted using the provided comparator.
|
default <T> MutableIntList |
IntIterable.toSortedListBy(IntToObjectFunction<T> function)
Converts the collection to a MutableIntListImplementation sorted based on the natural order of the key returned
by
function. |
default <T> MutableIntList |
IntIterable.toSortedListBy(IntToObjectFunction<T> function,
Comparator<? super T> comparator)
Converts the collection to a MutableIntList implementation, which is sorted based on the key returned by
function using the provided comparator. |
| Modifier and Type | Method and Description |
|---|---|
MutableIntList |
MutableSortedBag.collectInt(IntFunction<? super T> intFunction) |
| Modifier and Type | Method and Description |
|---|---|
MutableIntList |
MutableIntListFactory.empty() |
MutableIntList |
MutableIntListFactory.of()
Same as
MutableIntListFactory.empty(). |
MutableIntList |
MutableIntListFactory.of(int... items)
Same as
MutableIntListFactory.with(int[]). |
MutableIntList |
MutableIntListFactory.ofAll(IntIterable items)
|
MutableIntList |
MutableIntListFactory.ofAll(IntStream items) |
MutableIntList |
MutableIntListFactory.ofAll(Iterable<Integer> iterable)
|
MutableIntList |
MutableIntListFactory.with()
Same as
MutableIntListFactory.empty(). |
MutableIntList |
MutableIntListFactory.with(int... items)
Creates a new list using the passed
items argument as the backing store. |
MutableIntList |
MutableIntListFactory.withAll(IntIterable items) |
MutableIntList |
MutableIntListFactory.withAll(IntStream items) |
MutableIntList |
MutableIntListFactory.withAll(Iterable<Integer> iterable) |
default MutableIntList |
MutableIntListFactory.withInitialCapacity(int capacity)
Same as
MutableIntListFactory.empty(). |
default MutableIntList |
MutableIntListFactory.wrapCopy(int... array)
Creates a new list by first copying the array passed in.
|
| Modifier and Type | Method and Description |
|---|---|
MutableIntList |
MutableList.collectInt(IntFunction<? super T> intFunction) |
| Modifier and Type | Method and Description |
|---|---|
MutableIntList |
MutableIntList.asSynchronized() |
MutableIntList |
MutableIntList.asUnmodifiable() |
MutableIntList |
MutableIntList.distinct() |
default MutableIntList |
MutableIntList.newEmpty()
Creates a new empty mutable version of the same List type.
|
MutableIntList |
MutableIntList.reject(IntPredicate predicate) |
MutableIntList |
MutableIntList.reverseThis() |
MutableIntList |
MutableIntList.select(IntPredicate predicate) |
default MutableIntList |
MutableIntList.shuffleThis()
Randomly permutes this list mutating its contents and returns the same list (this).
|
default MutableIntList |
MutableIntList.shuffleThis(Random rnd)
Randomly permutes this list mutating its contents and returns the same list (this).
|
MutableIntList |
MutableIntList.sortThis()
Sorts this list mutating its contents and returns the same mutable list (this).
|
default MutableIntList |
MutableIntList.sortThis(IntComparator comparator)
Sorts the internal data structure of this list and returns the list itself as a convenience.
|
default <T> MutableIntList |
MutableIntList.sortThisBy(IntToObjectFunction<T> function)
Sorts the internal data structure of this list based on the natural order of the key returned by
function. |
default <T> MutableIntList |
MutableIntList.sortThisBy(IntToObjectFunction<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. |
MutableIntList |
MutableIntList.subList(int fromIndex,
int toIndex) |
default MutableIntList |
MutableIntList.tap(IntProcedure procedure) |
MutableIntList |
MutableIntList.toReversed() |
MutableIntList |
MutableIntList.with(int element) |
MutableIntList |
MutableIntList.withAll(IntIterable elements) |
MutableIntList |
MutableIntList.without(int element) |
MutableIntList |
MutableIntList.withoutAll(IntIterable elements) |
| Modifier and Type | Method and Description |
|---|---|
MutableIntList |
MutableOrderedMap.collectInt(IntFunction<? super V> intFunction) |
| Modifier and Type | Method and Description |
|---|---|
MutableIntList |
MutableSortedMap.collectInt(IntFunction<? super V> intFunction) |
| Modifier and Type | Method and Description |
|---|---|
MutableIntList |
MutableSortedSet.collectInt(IntFunction<? super T> intFunction) |
Copyright © 2004–2021. All rights reserved.