| 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() |
| 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.with()
Same as
MutableIntListFactory.empty(). |
MutableIntList |
MutableIntListFactory.with(int... items) |
MutableIntList |
MutableIntListFactory.withAll(IntIterable items) |
MutableIntList |
MutableIntListFactory.withAll(IntStream items) |
| 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() |
MutableIntList |
MutableIntList.reject(IntPredicate predicate) |
MutableIntList |
MutableIntList.reverseThis() |
MutableIntList |
MutableIntList.select(IntPredicate predicate) |
MutableIntList |
MutableIntList.sortThis()
Sorts this list mutating its contents and returns the same mutable list (this).
|
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–2017. All rights reserved.