Uses of Interface
org.eclipse.collections.api.list.primitive.MutableIntList
-
Packages that use MutableIntList 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 ofList
.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 ofMap
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.org.eclipse.collections.impl.bag.immutable.primitive This package contains implementations of the immutable primitive bag interfaces.org.eclipse.collections.impl.bag.sorted.mutable This package contains implementations ofMutableSortedBag
.org.eclipse.collections.impl.collection.mutable.primitive This package contains implementations of the mutable primitive collection interfaces.org.eclipse.collections.impl.lazy.primitive This package contains implementations of the lazy primitive iterator interfaces.org.eclipse.collections.impl.list.immutable.primitive This package contains implementations of immutable primitive list interfaces and immutable primitive list factory interfaces.org.eclipse.collections.impl.list.mutable This package contains implementations of theMutableList
interface.org.eclipse.collections.impl.list.mutable.primitive This package contains implementations of the mutable primitive list interfaces.org.eclipse.collections.impl.list.primitive This package contains implementations of the primitive list interfaces.org.eclipse.collections.impl.map.immutable.primitive This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.map.mutable.primitive This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.map.ordered.mutable org.eclipse.collections.impl.map.sorted.mutable This package contains implementations of theMutableSortedMap
interface.org.eclipse.collections.impl.primitive org.eclipse.collections.impl.set.immutable.primitive This package contains implementations of the immutable primitive set interfaces.org.eclipse.collections.impl.set.sorted.mutable This package contains implementations ofMutableSortedSet
.org.eclipse.collections.impl.stack.immutable.primitive This package contains implementations of the immutable primitive stack interfaces.org.eclipse.collections.impl.stack.mutable.primitive This package contains implementations of the mutable primitive stack interfaces.org.eclipse.collections.impl.stack.primitive org.eclipse.collections.impl.stream org.eclipse.collections.impl.string.immutable org.eclipse.collections.impl.utility This package contains static utilities that provide iteration pattern implementations which work with JCF collections.org.eclipse.collections.impl.utility.internal This package contains static utilities that provide internal iteration pattern implementations which work with JCF collections. -
-
Uses of MutableIntList in org.eclipse.collections.api
Methods in org.eclipse.collections.api that return MutableIntList Modifier and Type Method 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 byfunction
.default <T> MutableIntList
IntIterable. toSortedListBy(IntToObjectFunction<T> function, java.util.Comparator<? super T> comparator)
Converts the collection to a MutableIntList implementation, which is sorted based on the key returned byfunction
using the providedcomparator
. -
Uses of MutableIntList in org.eclipse.collections.api.bag.sorted
Methods in org.eclipse.collections.api.bag.sorted that return MutableIntList Modifier and Type Method Description MutableIntList
MutableSortedBag. collectInt(IntFunction<? super T> intFunction)
-
Uses of MutableIntList in org.eclipse.collections.api.factory.list.primitive
Methods in org.eclipse.collections.api.factory.list.primitive that return MutableIntList Modifier and Type Method Description MutableIntList
MutableIntListFactory. empty()
MutableIntList
MutableIntListFactory. of()
Same asMutableIntListFactory.empty()
.MutableIntList
MutableIntListFactory. of(int... items)
Same asMutableIntListFactory.with(int[])
.MutableIntList
MutableIntListFactory. ofAll(java.lang.Iterable<java.lang.Integer> iterable)
MutableIntList
MutableIntListFactory. ofAll(java.util.stream.IntStream items)
MutableIntList
MutableIntListFactory. ofAll(IntIterable items)
MutableIntList
MutableIntListFactory. with()
Same asMutableIntListFactory.empty()
.MutableIntList
MutableIntListFactory. with(int... items)
Creates a new list using the passeditems
argument as the backing store.MutableIntList
MutableIntListFactory. withAll(java.lang.Iterable<java.lang.Integer> iterable)
MutableIntList
MutableIntListFactory. withAll(java.util.stream.IntStream items)
MutableIntList
MutableIntListFactory. withAll(IntIterable items)
default MutableIntList
MutableIntListFactory. withInitialCapacity(int capacity)
Same asMutableIntListFactory.empty()
.default MutableIntList
MutableIntListFactory. wrapCopy(int... array)
Creates a new list by first copying the array passed in. -
Uses of MutableIntList in org.eclipse.collections.api.list
Methods in org.eclipse.collections.api.list that return MutableIntList Modifier and Type Method Description default MutableIntList
MutableList. collectInt(IntFunction<? super T> intFunction)
-
Uses of MutableIntList in org.eclipse.collections.api.list.primitive
Methods in org.eclipse.collections.api.list.primitive that return MutableIntList Modifier and Type Method 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)
default MutableIntList
MutableIntList. rejectWithIndex(IntIntPredicate predicate)
Returns a new MutableIntList excluding all elements with corresponding indexes matching the specified predicate.MutableIntList
MutableIntList. reverseThis()
MutableIntList
MutableIntList. select(IntPredicate predicate)
default MutableIntList
MutableIntList. selectWithIndex(IntIntPredicate predicate)
Returns a new MutableIntList including all elements with corresponding indexes matching the specified predicate.default MutableIntList
MutableIntList. shuffleThis()
Randomly permutes this list mutating its contents and returns the same list (this).default MutableIntList
MutableIntList. shuffleThis(java.util.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 byfunction
.default <T> MutableIntList
MutableIntList. sortThisBy(IntToObjectFunction<T> function, java.util.Comparator<? super T> comparator)
Sorts the internal data structure of this list based on the key returned byfunction
using the providedcomparator
.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)
-
Uses of MutableIntList in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return MutableIntList Modifier and Type Method Description MutableIntList
MutableOrderedMap. collectInt(IntFunction<? super V> intFunction)
-
Uses of MutableIntList in org.eclipse.collections.api.map.sorted
Methods in org.eclipse.collections.api.map.sorted that return MutableIntList Modifier and Type Method Description MutableIntList
MutableSortedMap. collectInt(IntFunction<? super V> intFunction)
-
Uses of MutableIntList in org.eclipse.collections.api.set.sorted
Methods in org.eclipse.collections.api.set.sorted that return MutableIntList Modifier and Type Method Description MutableIntList
MutableSortedSet. collectInt(IntFunction<? super T> intFunction)
-
Uses of MutableIntList in org.eclipse.collections.impl.bag.immutable.primitive
Methods in org.eclipse.collections.impl.bag.immutable.primitive that return MutableIntList Modifier and Type Method Description MutableIntList
ImmutableIntEmptyBag. toList()
MutableIntList
ImmutableIntHashBag. toList()
MutableIntList
ImmutableIntSingletonBag. toList()
MutableIntList
ImmutableIntEmptyBag. toSortedList()
MutableIntList
ImmutableIntHashBag. toSortedList()
MutableIntList
ImmutableIntSingletonBag. toSortedList()
-
Uses of MutableIntList in org.eclipse.collections.impl.bag.sorted.mutable
Methods in org.eclipse.collections.impl.bag.sorted.mutable that return MutableIntList Modifier and Type Method Description MutableIntList
AbstractMutableSortedBag. collectInt(IntFunction<? super T> intFunction)
MutableIntList
SynchronizedSortedBag. collectInt(IntFunction<? super T> intFunction)
MutableIntList
UnmodifiableSortedBag. collectInt(IntFunction<? super T> intFunction)
-
Uses of MutableIntList in org.eclipse.collections.impl.collection.mutable.primitive
Methods in org.eclipse.collections.impl.collection.mutable.primitive that return MutableIntList Modifier and Type Method Description MutableIntList
AbstractSynchronizedIntCollection. toList()
MutableIntList
AbstractUnmodifiableIntCollection. toList()
MutableIntList
AbstractSynchronizedIntCollection. toSortedList()
MutableIntList
AbstractUnmodifiableIntCollection. toSortedList()
-
Uses of MutableIntList in org.eclipse.collections.impl.lazy.primitive
Methods in org.eclipse.collections.impl.lazy.primitive that return MutableIntList Modifier and Type Method Description MutableIntList
AbstractLazyIntIterable. toList()
MutableIntList
CollectIntIterable. toList()
MutableIntList
LazyIntIterableAdapter. toList()
MutableIntList
ReverseIntIterable. toList()
MutableIntList
SelectIntIterable. toList()
MutableIntList
AbstractLazyIntIterable. toSortedList()
MutableIntList
LazyIntIterableAdapter. toSortedList()
-
Uses of MutableIntList in org.eclipse.collections.impl.list.immutable.primitive
Methods in org.eclipse.collections.impl.list.immutable.primitive that return MutableIntList Modifier and Type Method Description MutableIntList
ImmutableIntArrayList. toList()
MutableIntList
ImmutableIntEmptyList. toList()
MutableIntList
ImmutableIntSingletonList. toList()
MutableIntList
ImmutableIntArrayList. toSortedList()
MutableIntList
ImmutableIntEmptyList. toSortedList()
MutableIntList
ImmutableIntSingletonList. toSortedList()
-
Uses of MutableIntList in org.eclipse.collections.impl.list.mutable
Methods in org.eclipse.collections.impl.list.mutable that return MutableIntList Modifier and Type Method Description MutableIntList
MultiReaderFastList. collectInt(IntFunction<? super T> intFunction)
MutableIntList
MultiReaderFastList.UntouchableMutableList. collectInt(IntFunction<? super T> intFunction)
MutableIntList
SynchronizedMutableList. collectInt(IntFunction<? super T> intFunction)
MutableIntList
UnmodifiableMutableList. collectInt(IntFunction<? super T> intFunction)
-
Uses of MutableIntList in org.eclipse.collections.impl.list.mutable.primitive
Classes in org.eclipse.collections.impl.list.mutable.primitive that implement MutableIntList Modifier and Type Class Description class
IntArrayList
IntArrayList is similar to FastList, and is memory-optimized for int primitives.class
SynchronizedIntList
A synchronized view of aMutableIntList
.class
UnmodifiableIntList
This file was automatically generated from template file unmodifiablePrimitiveList.stg.Methods in org.eclipse.collections.impl.list.mutable.primitive that return MutableIntList Modifier and Type Method Description MutableIntList
IntArrayList. asSynchronized()
MutableIntList
SynchronizedIntList. asSynchronized()
MutableIntList
UnmodifiableIntList. asSynchronized()
MutableIntList
IntArrayList. asUnmodifiable()
MutableIntList
SynchronizedIntList. asUnmodifiable()
MutableIntList
UnmodifiableIntList. asUnmodifiable()
MutableIntList
IntArrayList. distinct()
MutableIntList
SynchronizedIntList. distinct()
MutableIntList
UnmodifiableIntList. distinct()
MutableIntList
MutableIntListFactoryImpl. empty()
private MutableIntList
SynchronizedIntList. getMutableIntList()
private MutableIntList
UnmodifiableIntList. getMutableIntList()
MutableIntList
SynchronizedIntList. newEmpty()
MutableIntList
UnmodifiableIntList. newEmpty()
MutableIntList
MutableIntListFactoryImpl. of()
MutableIntList
MutableIntListFactoryImpl. of(int... items)
MutableIntList
MutableIntListFactoryImpl. ofAll(java.lang.Iterable<java.lang.Integer> iterable)
MutableIntList
MutableIntListFactoryImpl. ofAll(java.util.stream.IntStream items)
MutableIntList
MutableIntListFactoryImpl. ofAll(IntIterable items)
MutableIntList
SynchronizedIntList. reject(IntPredicate predicate)
MutableIntList
UnmodifiableIntList. reject(IntPredicate predicate)
MutableIntList
SynchronizedIntList. rejectWithIndex(IntIntPredicate predicate)
Returns a new MutableIntList excluding all elements with corresponding indexes matching the specified predicate.MutableIntList
UnmodifiableIntList. rejectWithIndex(IntIntPredicate predicate)
Returns a new MutableIntList excluding all elements with corresponding indexes matching the specified predicate.MutableIntList
SynchronizedIntList. reverseThis()
MutableIntList
UnmodifiableIntList. reverseThis()
MutableIntList
SynchronizedIntList. select(IntPredicate predicate)
MutableIntList
UnmodifiableIntList. select(IntPredicate predicate)
MutableIntList
SynchronizedIntList. selectWithIndex(IntIntPredicate predicate)
Returns a new MutableIntList including all elements with corresponding indexes matching the specified predicate.MutableIntList
UnmodifiableIntList. selectWithIndex(IntIntPredicate predicate)
Returns a new MutableIntList including all elements with corresponding indexes matching the specified predicate.MutableIntList
SynchronizedIntList. shuffleThis()
MutableIntList
SynchronizedIntList. shuffleThis(java.util.Random rnd)
MutableIntList
UnmodifiableIntList. shuffleThis()
MutableIntList
SynchronizedIntList. sortThis()
MutableIntList
SynchronizedIntList. sortThis(IntComparator comparator)
MutableIntList
UnmodifiableIntList. sortThis()
<T> MutableIntList
SynchronizedIntList. sortThisBy(IntToObjectFunction<T> function)
<T> MutableIntList
SynchronizedIntList. sortThisBy(IntToObjectFunction<T> function, java.util.Comparator<? super T> comparator)
MutableIntList
IntArrayList. subList(int fromIndex, int toIndex)
MutableIntList
SynchronizedIntList. subList(int fromIndex, int toIndex)
MutableIntList
UnmodifiableIntList. subList(int fromIndex, int toIndex)
MutableIntList
SynchronizedIntList. toReversed()
MutableIntList
UnmodifiableIntList. toReversed()
MutableIntList
MutableIntListFactoryImpl. with()
MutableIntList
MutableIntListFactoryImpl. with(int... items)
Creates a new list using the passeditems
argument as the backing store.MutableIntList
MutableIntListFactoryImpl. withAll(java.lang.Iterable<java.lang.Integer> iterable)
MutableIntList
MutableIntListFactoryImpl. withAll(java.util.stream.IntStream items)
MutableIntList
MutableIntListFactoryImpl. withAll(IntIterable items)
MutableIntList
MutableIntListFactoryImpl. withInitialCapacity(int capacity)
Constructors in org.eclipse.collections.impl.list.mutable.primitive with parameters of type MutableIntList Constructor Description SynchronizedIntList(MutableIntList list)
SynchronizedIntList(MutableIntList list, java.lang.Object newLock)
UnmodifiableIntList(MutableIntList list)
-
Uses of MutableIntList in org.eclipse.collections.impl.list.primitive
Methods in org.eclipse.collections.impl.list.primitive that return MutableIntList Modifier and Type Method Description MutableIntList
IntInterval. toList()
MutableIntList
IntInterval. toSortedList()
-
Uses of MutableIntList in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive that return MutableIntList Modifier and Type Method Description MutableIntList
ImmutableByteIntEmptyMap. toList()
MutableIntList
ImmutableByteIntHashMap. toList()
MutableIntList
ImmutableByteIntSingletonMap. toList()
MutableIntList
ImmutableCharIntEmptyMap. toList()
MutableIntList
ImmutableCharIntHashMap. toList()
MutableIntList
ImmutableCharIntSingletonMap. toList()
MutableIntList
ImmutableDoubleIntEmptyMap. toList()
MutableIntList
ImmutableDoubleIntHashMap. toList()
MutableIntList
ImmutableDoubleIntSingletonMap. toList()
MutableIntList
ImmutableFloatIntEmptyMap. toList()
MutableIntList
ImmutableFloatIntHashMap. toList()
MutableIntList
ImmutableFloatIntSingletonMap. toList()
MutableIntList
ImmutableIntIntEmptyMap. toList()
MutableIntList
ImmutableIntIntHashMap. toList()
MutableIntList
ImmutableIntIntSingletonMap. toList()
MutableIntList
ImmutableLongIntEmptyMap. toList()
MutableIntList
ImmutableLongIntHashMap. toList()
MutableIntList
ImmutableLongIntSingletonMap. toList()
MutableIntList
ImmutableObjectIntEmptyMap. toList()
MutableIntList
ImmutableObjectIntHashMap. toList()
MutableIntList
ImmutableObjectIntSingletonMap. toList()
MutableIntList
ImmutableShortIntEmptyMap. toList()
MutableIntList
ImmutableShortIntHashMap. toList()
MutableIntList
ImmutableShortIntSingletonMap. toList()
MutableIntList
ImmutableByteIntEmptyMap. toSortedList()
MutableIntList
ImmutableByteIntHashMap. toSortedList()
MutableIntList
ImmutableByteIntSingletonMap. toSortedList()
MutableIntList
ImmutableCharIntEmptyMap. toSortedList()
MutableIntList
ImmutableCharIntHashMap. toSortedList()
MutableIntList
ImmutableCharIntSingletonMap. toSortedList()
MutableIntList
ImmutableDoubleIntEmptyMap. toSortedList()
MutableIntList
ImmutableDoubleIntHashMap. toSortedList()
MutableIntList
ImmutableDoubleIntSingletonMap. toSortedList()
MutableIntList
ImmutableFloatIntEmptyMap. toSortedList()
MutableIntList
ImmutableFloatIntHashMap. toSortedList()
MutableIntList
ImmutableFloatIntSingletonMap. toSortedList()
MutableIntList
ImmutableIntIntEmptyMap. toSortedList()
MutableIntList
ImmutableIntIntHashMap. toSortedList()
MutableIntList
ImmutableIntIntSingletonMap. toSortedList()
MutableIntList
ImmutableLongIntEmptyMap. toSortedList()
MutableIntList
ImmutableLongIntHashMap. toSortedList()
MutableIntList
ImmutableLongIntSingletonMap. toSortedList()
MutableIntList
ImmutableObjectIntEmptyMap. toSortedList()
MutableIntList
ImmutableObjectIntHashMap. toSortedList()
MutableIntList
ImmutableObjectIntSingletonMap. toSortedList()
MutableIntList
ImmutableShortIntEmptyMap. toSortedList()
MutableIntList
ImmutableShortIntHashMap. toSortedList()
MutableIntList
ImmutableShortIntSingletonMap. toSortedList()
-
Uses of MutableIntList in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableIntList Modifier and Type Method Description MutableIntList
AbstractMutableIntKeySet. toList()
MutableIntList
AbstractMutableIntValuesMap.AbstractIntValuesCollection. toList()
MutableIntList
IntBooleanHashMap.KeysView. toList()
MutableIntList
ObjectIntHashMap. toList()
MutableIntList
ObjectIntHashMap.ValuesCollection. toList()
MutableIntList
ObjectIntHashMapWithHashingStrategy. toList()
MutableIntList
ObjectIntHashMapWithHashingStrategy.ValuesCollection. toList()
MutableIntList
SynchronizedByteIntMap. toList()
MutableIntList
SynchronizedCharIntMap. toList()
MutableIntList
SynchronizedDoubleIntMap. toList()
MutableIntList
SynchronizedFloatIntMap. toList()
MutableIntList
SynchronizedIntIntMap. toList()
MutableIntList
SynchronizedLongIntMap. toList()
MutableIntList
SynchronizedObjectIntMap. toList()
MutableIntList
SynchronizedShortIntMap. toList()
MutableIntList
UnmodifiableByteIntMap. toList()
MutableIntList
UnmodifiableCharIntMap. toList()
MutableIntList
UnmodifiableDoubleIntMap. toList()
MutableIntList
UnmodifiableFloatIntMap. toList()
MutableIntList
UnmodifiableIntIntMap. toList()
MutableIntList
UnmodifiableLongIntMap. toList()
MutableIntList
UnmodifiableObjectIntMap. toList()
MutableIntList
UnmodifiableShortIntMap. toList()
MutableIntList
AbstractMutableIntKeySet. toSortedList()
MutableIntList
AbstractMutableIntValuesMap.AbstractIntValuesCollection. toSortedList()
MutableIntList
ObjectIntHashMap. toSortedList()
MutableIntList
ObjectIntHashMap.ValuesCollection. toSortedList()
MutableIntList
ObjectIntHashMapWithHashingStrategy. toSortedList()
MutableIntList
ObjectIntHashMapWithHashingStrategy.ValuesCollection. toSortedList()
MutableIntList
SynchronizedByteIntMap. toSortedList()
MutableIntList
SynchronizedCharIntMap. toSortedList()
MutableIntList
SynchronizedDoubleIntMap. toSortedList()
MutableIntList
SynchronizedFloatIntMap. toSortedList()
MutableIntList
SynchronizedIntIntMap. toSortedList()
MutableIntList
SynchronizedLongIntMap. toSortedList()
MutableIntList
SynchronizedObjectIntMap. toSortedList()
MutableIntList
SynchronizedShortIntMap. toSortedList()
MutableIntList
UnmodifiableByteIntMap. toSortedList()
MutableIntList
UnmodifiableCharIntMap. toSortedList()
MutableIntList
UnmodifiableDoubleIntMap. toSortedList()
MutableIntList
UnmodifiableFloatIntMap. toSortedList()
MutableIntList
UnmodifiableIntIntMap. toSortedList()
MutableIntList
UnmodifiableLongIntMap. toSortedList()
MutableIntList
UnmodifiableObjectIntMap. toSortedList()
MutableIntList
UnmodifiableShortIntMap. toSortedList()
-
Uses of MutableIntList in org.eclipse.collections.impl.map.ordered.mutable
Methods in org.eclipse.collections.impl.map.ordered.mutable that return MutableIntList Modifier and Type Method Description MutableIntList
OrderedMapAdapter. collectInt(IntFunction<? super V> intFunction)
MutableIntList
UnmodifiableMutableOrderedMap. collectInt(IntFunction<? super V> intFunction)
-
Uses of MutableIntList in org.eclipse.collections.impl.map.sorted.mutable
Methods in org.eclipse.collections.impl.map.sorted.mutable that return MutableIntList Modifier and Type Method Description MutableIntList
AbstractMutableSortedMap. collectInt(IntFunction<? super V> intFunction)
MutableIntList
SynchronizedSortedMap. collectInt(IntFunction<? super V> intFunction)
MutableIntList
UnmodifiableTreeMap. collectInt(IntFunction<? super V> intFunction)
-
Uses of MutableIntList in org.eclipse.collections.impl.primitive
Methods in org.eclipse.collections.impl.primitive that return MutableIntList Modifier and Type Method Description MutableIntList
AbstractIntIterable. toList()
MutableIntList
SynchronizedIntIterable. toList()
MutableIntList
AbstractIntIterable. toSortedList()
MutableIntList
SynchronizedIntIterable. toSortedList()
-
Uses of MutableIntList in org.eclipse.collections.impl.set.immutable.primitive
Methods in org.eclipse.collections.impl.set.immutable.primitive that return MutableIntList Modifier and Type Method Description MutableIntList
ImmutableIntEmptySet. toList()
MutableIntList
ImmutableIntSingletonSet. toList()
MutableIntList
ImmutableIntEmptySet. toSortedList()
MutableIntList
ImmutableIntSingletonSet. toSortedList()
-
Uses of MutableIntList in org.eclipse.collections.impl.set.sorted.mutable
Methods in org.eclipse.collections.impl.set.sorted.mutable that return MutableIntList Modifier and Type Method Description MutableIntList
SortedSetAdapter. collectInt(IntFunction<? super T> intFunction)
MutableIntList
SynchronizedSortedSet. collectInt(IntFunction<? super T> intFunction)
MutableIntList
TreeSortedSet. collectInt(IntFunction<? super T> intFunction)
MutableIntList
UnmodifiableSortedSet. collectInt(IntFunction<? super T> intFunction)
-
Uses of MutableIntList in org.eclipse.collections.impl.stack.immutable.primitive
Methods in org.eclipse.collections.impl.stack.immutable.primitive that return MutableIntList Modifier and Type Method Description MutableIntList
ImmutableIntEmptyStack. toList()
MutableIntList
ImmutableIntSingletonStack. toList()
MutableIntList
ImmutableIntArrayStack. toSortedList()
MutableIntList
ImmutableIntEmptyStack. toSortedList()
MutableIntList
ImmutableIntSingletonStack. toSortedList()
-
Uses of MutableIntList in org.eclipse.collections.impl.stack.mutable.primitive
Methods in org.eclipse.collections.impl.stack.mutable.primitive that return MutableIntList Modifier and Type Method Description MutableIntList
SynchronizedIntStack. toList()
MutableIntList
UnmodifiableIntStack. toList()
MutableIntList
IntArrayStack. toSortedList()
MutableIntList
SynchronizedIntStack. toSortedList()
MutableIntList
UnmodifiableIntStack. toSortedList()
-
Uses of MutableIntList in org.eclipse.collections.impl.stack.primitive
Methods in org.eclipse.collections.impl.stack.primitive that return MutableIntList Modifier and Type Method Description MutableIntList
AbstractIntStack. toList()
-
Uses of MutableIntList in org.eclipse.collections.impl.stream
Methods in org.eclipse.collections.impl.stream that return MutableIntList Modifier and Type Method Description static MutableIntList
PrimitiveStreams. mIntList(java.util.stream.IntStream stream)
-
Uses of MutableIntList in org.eclipse.collections.impl.string.immutable
Methods in org.eclipse.collections.impl.string.immutable that return MutableIntList Modifier and Type Method Description MutableIntList
CodePointAdapter. toList()
MutableIntList
CodePointList. toList()
-
Uses of MutableIntList in org.eclipse.collections.impl.utility
Methods in org.eclipse.collections.impl.utility that return MutableIntList Modifier and Type Method Description static <T> MutableIntList
ArrayIterate. collectInt(T[] objectArray, IntFunction<? super T> intFunction)
static <T> MutableIntList
ArrayListIterate. collectInt(java.util.ArrayList<T> list, IntFunction<? super T> intFunction)
static <T> MutableIntList
ListIterate. collectInt(java.util.List<T> list, IntFunction<? super T> intFunction)
-
Uses of MutableIntList in org.eclipse.collections.impl.utility.internal
Methods in org.eclipse.collections.impl.utility.internal that return MutableIntList Modifier and Type Method Description static <T> MutableIntList
RandomAccessListIterate. collectInt(java.util.List<T> list, IntFunction<? super T> intFunction)
-