Uses of Interface
org.eclipse.collections.api.list.primitive.MutableIntList
Packages that use MutableIntList
Package
Description
This package contains interfaces for Eclipse Collections API.
This package contains interfaces for SortedBag API.
This package contains factory API for creating immutable primitive list instances.
This package contains interfaces for list API which enhance the performance and functionality of
List.This package contains mutable and immutable primitive list API.
This package contains interfaces for map API which enhance the performance and functionality of
MapThis package contains mutable and immutable sorted map interfaces.
This package contains interfaces for sorted set API.
This package contains implementations of the immutable primitive bag interfaces.
This package contains implementations of
MutableSortedBag.This package contains implementations of the mutable primitive collection interfaces.
This package contains implementations of the lazy primitive iterator interfaces.
This package contains implementations of immutable primitive list interfaces and immutable primitive list factory interfaces.
This package contains implementations of the
MutableList interface.This package contains implementations of the mutable primitive list interfaces.
This package contains implementations of the primitive list interfaces.
This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the
MutableSortedMap interface.This package contains implementations of the immutable primitive set interfaces.
This package contains implementations of
MutableSortedSet.This package contains implementations of the immutable primitive stack interfaces.
This package contains implementations of the mutable primitive stack interfaces.
This package contains static utilities that provide iteration pattern implementations which work with JCF collections.
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 MutableIntListModifier and TypeMethodDescriptionIntIterable.toList()Converts the IntIterable to a new MutableIntList.IntIterable.toSortedList()default MutableIntListIntIterable.toSortedList(IntComparator comparator) Converts the collection to a MutableIntList implementation sorted using the provided comparator.default <T> MutableIntListIntIterable.toSortedListBy(IntToObjectFunction<T> function) Converts the collection to a MutableIntListImplementation sorted based on the natural order of the key returned byfunction.default <T> MutableIntListIntIterable.toSortedListBy(IntToObjectFunction<T> function, Comparator<? super T> comparator) Converts the collection to a MutableIntList implementation, which is sorted based on the key returned byfunctionusing the providedcomparator. -
Uses of MutableIntList in org.eclipse.collections.api.bag.sorted
Methods in org.eclipse.collections.api.bag.sorted that return MutableIntListModifier and TypeMethodDescriptionMutableSortedBag.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 MutableIntListModifier and TypeMethodDescriptionMutableIntListFactory.empty()MutableIntListFactory.of()Same asMutableIntListFactory.empty().MutableIntListFactory.of(int... items) Same asMutableIntListFactory.with(int[]).MutableIntListFactory.ofAll(IntIterable items) MutableIntListFactory.with()Same asMutableIntListFactory.empty().MutableIntListFactory.with(int... items) Creates a new list using the passeditemsargument as the backing store.MutableIntListFactory.withAll(IntIterable items) default MutableIntListMutableIntListFactory.withInitialCapacity(int capacity) Same asMutableIntListFactory.empty().default MutableIntListMutableIntListFactory.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 MutableIntListModifier and TypeMethodDescriptiondefault MutableIntListMutableList.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 MutableIntListModifier and TypeMethodDescriptionMutableIntList.asSynchronized()MutableIntList.asUnmodifiable()MutableIntList.distinct()default MutableIntListMutableIntList.newEmpty()Creates a new empty mutable version of the same List type.MutableIntList.reject(IntPredicate predicate) default MutableIntListMutableIntList.rejectWithIndex(IntIntPredicate predicate) Returns a new MutableIntList excluding all elements with corresponding indexes matching the specified predicate.MutableIntList.reverseThis()MutableIntList.select(IntPredicate predicate) default MutableIntListMutableIntList.selectWithIndex(IntIntPredicate predicate) Returns a new MutableIntList including all elements with corresponding indexes matching the specified predicate.default MutableIntListMutableIntList.shuffleThis()Randomly permutes this list mutating its contents and returns the same list (this).default MutableIntListMutableIntList.shuffleThis(Random rnd) Randomly permutes this list mutating its contents and returns the same list (this).MutableIntList.sortThis()Sorts this list mutating its contents and returns the same mutable list (this).default MutableIntListMutableIntList.sortThis(IntComparator comparator) Sorts the internal data structure of this list and returns the list itself as a convenience.default <T> MutableIntListMutableIntList.sortThisBy(IntToObjectFunction<T> function) Sorts the internal data structure of this list based on the natural order of the key returned byfunction.default <T> MutableIntListMutableIntList.sortThisBy(IntToObjectFunction<T> function, Comparator<? super T> comparator) Sorts the internal data structure of this list based on the key returned byfunctionusing the providedcomparator.MutableIntList.subList(int fromIndex, int toIndex) default MutableIntListMutableIntList.tap(IntProcedure procedure) MutableIntList.toReversed()MutableIntList.with(int element) MutableIntList.withAll(IntIterable elements) MutableIntList.without(int element) MutableIntList.withoutAll(IntIterable elements) -
Uses of MutableIntList in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return MutableIntListModifier and TypeMethodDescriptionMutableOrderedMap.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 MutableIntListModifier and TypeMethodDescriptionMutableSortedMap.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 MutableIntListModifier and TypeMethodDescriptionMutableSortedSet.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 MutableIntListModifier and TypeMethodDescriptionImmutableIntEmptyBag.toList()ImmutableIntHashBag.toList()ImmutableIntSingletonBag.toList()ImmutableIntEmptyBag.toSortedList()ImmutableIntHashBag.toSortedList()ImmutableIntSingletonBag.toSortedList() -
Uses of MutableIntList in org.eclipse.collections.impl.bag.sorted.mutable
Methods in org.eclipse.collections.impl.bag.sorted.mutable that return MutableIntListModifier and TypeMethodDescriptionAbstractMutableSortedBag.collectInt(IntFunction<? super T> intFunction) SynchronizedSortedBag.collectInt(IntFunction<? super T> intFunction) 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 MutableIntListModifier and TypeMethodDescriptionAbstractSynchronizedIntCollection.toList()AbstractUnmodifiableIntCollection.toList()AbstractSynchronizedIntCollection.toSortedList()AbstractUnmodifiableIntCollection.toSortedList() -
Uses of MutableIntList in org.eclipse.collections.impl.lazy.primitive
Methods in org.eclipse.collections.impl.lazy.primitive that return MutableIntListModifier and TypeMethodDescriptionAbstractLazyIntIterable.toList()CollectIntIterable.toList()LazyIntIterableAdapter.toList()ReverseIntIterable.toList()SelectIntIterable.toList()AbstractLazyIntIterable.toSortedList()LazyIntIterableAdapter.toSortedList() -
Uses of MutableIntList in org.eclipse.collections.impl.list.immutable.primitive
Methods in org.eclipse.collections.impl.list.immutable.primitive that return MutableIntListModifier and TypeMethodDescriptionImmutableIntArrayList.toList()ImmutableIntEmptyList.toList()ImmutableIntSingletonList.toList()ImmutableIntArrayList.toSortedList()ImmutableIntEmptyList.toSortedList()ImmutableIntSingletonList.toSortedList() -
Uses of MutableIntList in org.eclipse.collections.impl.list.mutable
Methods in org.eclipse.collections.impl.list.mutable that return MutableIntListModifier and TypeMethodDescriptionMultiReaderFastList.collectInt(IntFunction<? super T> intFunction) MultiReaderFastList.UntouchableMutableList.collectInt(IntFunction<? super T> intFunction) SynchronizedMutableList.collectInt(IntFunction<? super T> intFunction) 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 MutableIntListModifier and TypeClassDescriptionclassIntArrayList is similar to FastList, and is memory-optimized for int primitives.classA synchronized view of aMutableIntList.classThis file was automatically generated from template file unmodifiablePrimitiveList.stg.Fields in org.eclipse.collections.impl.list.mutable.primitive declared as MutableIntListMethods in org.eclipse.collections.impl.list.mutable.primitive that return MutableIntListModifier and TypeMethodDescriptionIntArrayList.asSynchronized()SynchronizedIntList.asSynchronized()UnmodifiableIntList.asSynchronized()IntArrayList.asUnmodifiable()SynchronizedIntList.asUnmodifiable()UnmodifiableIntList.asUnmodifiable()IntArrayList.distinct()SynchronizedIntList.distinct()UnmodifiableIntList.distinct()MutableIntListFactoryImpl.empty()private MutableIntListSynchronizedIntList.getMutableIntList()private MutableIntListUnmodifiableIntList.getMutableIntList()SynchronizedIntList.newEmpty()UnmodifiableIntList.newEmpty()MutableIntListFactoryImpl.of()MutableIntListFactoryImpl.of(int... items) MutableIntListFactoryImpl.ofAll(IntIterable items) SynchronizedIntList.reject(IntPredicate predicate) UnmodifiableIntList.reject(IntPredicate predicate) SynchronizedIntList.rejectWithIndex(IntIntPredicate predicate) Returns a new MutableIntList excluding all elements with corresponding indexes matching the specified predicate.UnmodifiableIntList.rejectWithIndex(IntIntPredicate predicate) Returns a new MutableIntList excluding all elements with corresponding indexes matching the specified predicate.SynchronizedIntList.reverseThis()UnmodifiableIntList.reverseThis()SynchronizedIntList.select(IntPredicate predicate) UnmodifiableIntList.select(IntPredicate predicate) SynchronizedIntList.selectWithIndex(IntIntPredicate predicate) Returns a new MutableIntList including all elements with corresponding indexes matching the specified predicate.UnmodifiableIntList.selectWithIndex(IntIntPredicate predicate) Returns a new MutableIntList including all elements with corresponding indexes matching the specified predicate.SynchronizedIntList.shuffleThis()SynchronizedIntList.shuffleThis(Random rnd) UnmodifiableIntList.shuffleThis()SynchronizedIntList.sortThis()SynchronizedIntList.sortThis(IntComparator comparator) UnmodifiableIntList.sortThis()<T> MutableIntListSynchronizedIntList.sortThisBy(IntToObjectFunction<T> function) <T> MutableIntListSynchronizedIntList.sortThisBy(IntToObjectFunction<T> function, Comparator<? super T> comparator) IntArrayList.subList(int fromIndex, int toIndex) SynchronizedIntList.subList(int fromIndex, int toIndex) UnmodifiableIntList.subList(int fromIndex, int toIndex) SynchronizedIntList.toReversed()UnmodifiableIntList.toReversed()MutableIntListFactoryImpl.with()MutableIntListFactoryImpl.with(int... items) Creates a new list using the passeditemsargument as the backing store.MutableIntListFactoryImpl.withAll(IntIterable items) MutableIntListFactoryImpl.withInitialCapacity(int capacity) Constructors in org.eclipse.collections.impl.list.mutable.primitive with parameters of type MutableIntListModifierConstructorDescriptionBoxedMutableIntList(MutableIntList delegate) SynchronizedIntList(MutableIntList list, Object newLock) -
Uses of MutableIntList in org.eclipse.collections.impl.list.primitive
Methods in org.eclipse.collections.impl.list.primitive that return MutableIntList -
Uses of MutableIntList in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive that return MutableIntListModifier and TypeMethodDescriptionImmutableByteIntEmptyMap.toList()ImmutableByteIntHashMap.toList()ImmutableByteIntSingletonMap.toList()ImmutableCharIntEmptyMap.toList()ImmutableCharIntHashMap.toList()ImmutableCharIntSingletonMap.toList()ImmutableDoubleIntEmptyMap.toList()ImmutableDoubleIntHashMap.toList()ImmutableDoubleIntSingletonMap.toList()ImmutableFloatIntEmptyMap.toList()ImmutableFloatIntHashMap.toList()ImmutableFloatIntSingletonMap.toList()ImmutableIntIntEmptyMap.toList()ImmutableIntIntHashMap.toList()ImmutableIntIntSingletonMap.toList()ImmutableLongIntEmptyMap.toList()ImmutableLongIntHashMap.toList()ImmutableLongIntSingletonMap.toList()ImmutableObjectIntEmptyMap.toList()ImmutableObjectIntHashMap.toList()ImmutableObjectIntSingletonMap.toList()ImmutableShortIntEmptyMap.toList()ImmutableShortIntHashMap.toList()ImmutableShortIntSingletonMap.toList()ImmutableByteIntEmptyMap.toSortedList()ImmutableByteIntHashMap.toSortedList()ImmutableByteIntSingletonMap.toSortedList()ImmutableCharIntEmptyMap.toSortedList()ImmutableCharIntHashMap.toSortedList()ImmutableCharIntSingletonMap.toSortedList()ImmutableDoubleIntEmptyMap.toSortedList()ImmutableDoubleIntHashMap.toSortedList()ImmutableDoubleIntSingletonMap.toSortedList()ImmutableFloatIntEmptyMap.toSortedList()ImmutableFloatIntHashMap.toSortedList()ImmutableFloatIntSingletonMap.toSortedList()ImmutableIntIntEmptyMap.toSortedList()ImmutableIntIntHashMap.toSortedList()ImmutableIntIntSingletonMap.toSortedList()ImmutableLongIntEmptyMap.toSortedList()ImmutableLongIntHashMap.toSortedList()ImmutableLongIntSingletonMap.toSortedList()ImmutableObjectIntEmptyMap.toSortedList()ImmutableObjectIntHashMap.toSortedList()ImmutableObjectIntSingletonMap.toSortedList()ImmutableShortIntEmptyMap.toSortedList()ImmutableShortIntHashMap.toSortedList()ImmutableShortIntSingletonMap.toSortedList() -
Uses of MutableIntList in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableIntListModifier and TypeMethodDescriptionAbstractMutableIntKeySet.toList()AbstractMutableIntValuesMap.AbstractIntValuesCollection.toList()IntBooleanHashMap.KeysView.toList()ObjectIntHashMap.toList()ObjectIntHashMap.ValuesCollection.toList()ObjectIntHashMapWithHashingStrategy.toList()ObjectIntHashMapWithHashingStrategy.ValuesCollection.toList()SynchronizedByteIntMap.toList()SynchronizedCharIntMap.toList()SynchronizedDoubleIntMap.toList()SynchronizedFloatIntMap.toList()SynchronizedIntIntMap.toList()SynchronizedLongIntMap.toList()SynchronizedObjectIntMap.toList()SynchronizedShortIntMap.toList()UnmodifiableByteIntMap.toList()UnmodifiableCharIntMap.toList()UnmodifiableDoubleIntMap.toList()UnmodifiableFloatIntMap.toList()UnmodifiableIntIntMap.toList()UnmodifiableLongIntMap.toList()UnmodifiableObjectIntMap.toList()UnmodifiableShortIntMap.toList()AbstractMutableIntKeySet.toSortedList()AbstractMutableIntValuesMap.AbstractIntValuesCollection.toSortedList()ObjectIntHashMap.toSortedList()ObjectIntHashMap.ValuesCollection.toSortedList()ObjectIntHashMapWithHashingStrategy.toSortedList()ObjectIntHashMapWithHashingStrategy.ValuesCollection.toSortedList()SynchronizedByteIntMap.toSortedList()SynchronizedCharIntMap.toSortedList()SynchronizedDoubleIntMap.toSortedList()SynchronizedFloatIntMap.toSortedList()SynchronizedIntIntMap.toSortedList()SynchronizedLongIntMap.toSortedList()SynchronizedObjectIntMap.toSortedList()SynchronizedShortIntMap.toSortedList()UnmodifiableByteIntMap.toSortedList()UnmodifiableCharIntMap.toSortedList()UnmodifiableDoubleIntMap.toSortedList()UnmodifiableFloatIntMap.toSortedList()UnmodifiableIntIntMap.toSortedList()UnmodifiableLongIntMap.toSortedList()UnmodifiableObjectIntMap.toSortedList()UnmodifiableShortIntMap.toSortedList() -
Uses of MutableIntList in org.eclipse.collections.impl.map.ordered.mutable
Methods in org.eclipse.collections.impl.map.ordered.mutable that return MutableIntListModifier and TypeMethodDescriptionOrderedMapAdapter.collectInt(IntFunction<? super V> intFunction) 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 MutableIntListModifier and TypeMethodDescriptionAbstractMutableSortedMap.collectInt(IntFunction<? super V> intFunction) SynchronizedSortedMap.collectInt(IntFunction<? super V> intFunction) UnmodifiableTreeMap.collectInt(IntFunction<? super V> intFunction) -
Uses of MutableIntList in org.eclipse.collections.impl.primitive
Methods in org.eclipse.collections.impl.primitive that return MutableIntListModifier and TypeMethodDescriptionAbstractIntIterable.toList()SynchronizedIntIterable.toList()AbstractIntIterable.toSortedList()SynchronizedIntIterable.toSortedList() -
Uses of MutableIntList in org.eclipse.collections.impl.set.immutable.primitive
Methods in org.eclipse.collections.impl.set.immutable.primitive that return MutableIntListModifier and TypeMethodDescriptionImmutableIntEmptySet.toList()ImmutableIntSingletonSet.toList()ImmutableIntEmptySet.toSortedList()ImmutableIntSingletonSet.toSortedList() -
Uses of MutableIntList in org.eclipse.collections.impl.set.sorted.mutable
Methods in org.eclipse.collections.impl.set.sorted.mutable that return MutableIntListModifier and TypeMethodDescriptionSortedSetAdapter.collectInt(IntFunction<? super T> intFunction) SynchronizedSortedSet.collectInt(IntFunction<? super T> intFunction) TreeSortedSet.collectInt(IntFunction<? super T> intFunction) 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 MutableIntListModifier and TypeMethodDescriptionImmutableIntEmptyStack.toList()ImmutableIntSingletonStack.toList()ImmutableIntArrayStack.toSortedList()ImmutableIntEmptyStack.toSortedList()ImmutableIntSingletonStack.toSortedList() -
Uses of MutableIntList in org.eclipse.collections.impl.stack.mutable.primitive
Methods in org.eclipse.collections.impl.stack.mutable.primitive that return MutableIntListModifier and TypeMethodDescriptionSynchronizedIntStack.toList()UnmodifiableIntStack.toList()IntArrayStack.toSortedList()SynchronizedIntStack.toSortedList()UnmodifiableIntStack.toSortedList() -
Uses of MutableIntList in org.eclipse.collections.impl.stack.primitive
Methods in org.eclipse.collections.impl.stack.primitive that return MutableIntList -
Uses of MutableIntList in org.eclipse.collections.impl.stream
Methods in org.eclipse.collections.impl.stream that return MutableIntList -
Uses of MutableIntList in org.eclipse.collections.impl.string.immutable
Methods in org.eclipse.collections.impl.string.immutable that return MutableIntList -
Uses of MutableIntList in org.eclipse.collections.impl.utility
Methods in org.eclipse.collections.impl.utility that return MutableIntListModifier and TypeMethodDescriptionstatic <T> MutableIntListArrayIterate.collectInt(T[] objectArray, IntFunction<? super T> intFunction) static <T> MutableIntListArrayListIterate.collectInt(ArrayList<T> list, IntFunction<? super T> intFunction) static <T> MutableIntListListIterate.collectInt(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 MutableIntListModifier and TypeMethodDescriptionstatic <T> MutableIntListRandomAccessListIterate.collectInt(List<T> list, IntFunction<? super T> intFunction)