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 ofMaporg.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 theMutableListinterface.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 theMutableSortedMapinterface.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 MutableIntListIntIterable. toList()Converts the IntIterable to a new MutableIntList.MutableIntListIntIterable. 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, java.util.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 MutableIntList Modifier and Type Method Description MutableIntListMutableSortedBag. 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 MutableIntListMutableIntListFactory. empty()MutableIntListMutableIntListFactory. of()Same asMutableIntListFactory.empty().MutableIntListMutableIntListFactory. of(int... items)Same asMutableIntListFactory.with(int[]).MutableIntListMutableIntListFactory. ofAll(java.lang.Iterable<java.lang.Integer> iterable)MutableIntListMutableIntListFactory. ofAll(java.util.stream.IntStream items)MutableIntListMutableIntListFactory. ofAll(IntIterable items)MutableIntListMutableIntListFactory. with()Same asMutableIntListFactory.empty().MutableIntListMutableIntListFactory. with(int... items)Creates a new list using the passeditemsargument as the backing store.MutableIntListMutableIntListFactory. withAll(java.lang.Iterable<java.lang.Integer> iterable)MutableIntListMutableIntListFactory. withAll(java.util.stream.IntStream items)MutableIntListMutableIntListFactory. 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 MutableIntList Modifier and Type Method Description default 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 MutableIntList Modifier and Type Method Description MutableIntListMutableIntList. asSynchronized()MutableIntListMutableIntList. asUnmodifiable()MutableIntListMutableIntList. distinct()default MutableIntListMutableIntList. newEmpty()Creates a new empty mutable version of the same List type.MutableIntListMutableIntList. reject(IntPredicate predicate)default MutableIntListMutableIntList. rejectWithIndex(IntIntPredicate predicate)Returns a new MutableIntList excluding all elements with corresponding indexes matching the specified predicate.MutableIntListMutableIntList. reverseThis()MutableIntListMutableIntList. 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(java.util.Random rnd)Randomly permutes this list mutating its contents and returns the same list (this).MutableIntListMutableIntList. 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, java.util.Comparator<? super T> comparator)Sorts the internal data structure of this list based on the key returned byfunctionusing the providedcomparator.MutableIntListMutableIntList. subList(int fromIndex, int toIndex)default MutableIntListMutableIntList. tap(IntProcedure procedure)MutableIntListMutableIntList. toReversed()MutableIntListMutableIntList. with(int element)MutableIntListMutableIntList. withAll(IntIterable elements)MutableIntListMutableIntList. without(int element)MutableIntListMutableIntList. 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 MutableIntListMutableOrderedMap. 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 MutableIntListMutableSortedMap. 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 MutableIntListMutableSortedSet. 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 MutableIntListImmutableIntEmptyBag. toList()MutableIntListImmutableIntHashBag. toList()MutableIntListImmutableIntSingletonBag. toList()MutableIntListImmutableIntEmptyBag. toSortedList()MutableIntListImmutableIntHashBag. toSortedList()MutableIntListImmutableIntSingletonBag. 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 MutableIntListAbstractMutableSortedBag. collectInt(IntFunction<? super T> intFunction)MutableIntListSynchronizedSortedBag. collectInt(IntFunction<? super T> intFunction)MutableIntListUnmodifiableSortedBag. 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 MutableIntListAbstractSynchronizedIntCollection. toList()MutableIntListAbstractUnmodifiableIntCollection. toList()MutableIntListAbstractSynchronizedIntCollection. toSortedList()MutableIntListAbstractUnmodifiableIntCollection. 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 MutableIntListAbstractLazyIntIterable. toList()MutableIntListCollectIntIterable. toList()MutableIntListLazyIntIterableAdapter. toList()MutableIntListReverseIntIterable. toList()MutableIntListSelectIntIterable. toList()MutableIntListAbstractLazyIntIterable. toSortedList()MutableIntListLazyIntIterableAdapter. 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 MutableIntListImmutableIntArrayList. toList()MutableIntListImmutableIntEmptyList. toList()MutableIntListImmutableIntSingletonList. toList()MutableIntListImmutableIntArrayList. toSortedList()MutableIntListImmutableIntEmptyList. toSortedList()MutableIntListImmutableIntSingletonList. 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 MutableIntListMultiReaderFastList. collectInt(IntFunction<? super T> intFunction)MutableIntListMultiReaderFastList.UntouchableMutableList. collectInt(IntFunction<? super T> intFunction)MutableIntListSynchronizedMutableList. collectInt(IntFunction<? super T> intFunction)MutableIntListUnmodifiableMutableList. 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 classIntArrayListIntArrayList is similar to FastList, and is memory-optimized for int primitives.classSynchronizedIntListA synchronized view of aMutableIntList.classUnmodifiableIntListThis file was automatically generated from template file unmodifiablePrimitiveList.stg.Fields in org.eclipse.collections.impl.list.mutable.primitive declared as MutableIntList Modifier and Type Field Description private MutableIntListBoxedMutableIntList. delegateMethods in org.eclipse.collections.impl.list.mutable.primitive that return MutableIntList Modifier and Type Method Description MutableIntListIntArrayList. asSynchronized()MutableIntListSynchronizedIntList. asSynchronized()MutableIntListUnmodifiableIntList. asSynchronized()MutableIntListIntArrayList. asUnmodifiable()MutableIntListSynchronizedIntList. asUnmodifiable()MutableIntListUnmodifiableIntList. asUnmodifiable()MutableIntListIntArrayList. distinct()MutableIntListSynchronizedIntList. distinct()MutableIntListUnmodifiableIntList. distinct()MutableIntListMutableIntListFactoryImpl. empty()private MutableIntListSynchronizedIntList. getMutableIntList()private MutableIntListUnmodifiableIntList. getMutableIntList()MutableIntListSynchronizedIntList. newEmpty()MutableIntListUnmodifiableIntList. newEmpty()MutableIntListMutableIntListFactoryImpl. of()MutableIntListMutableIntListFactoryImpl. of(int... items)MutableIntListMutableIntListFactoryImpl. ofAll(java.lang.Iterable<java.lang.Integer> iterable)MutableIntListMutableIntListFactoryImpl. ofAll(java.util.stream.IntStream items)MutableIntListMutableIntListFactoryImpl. ofAll(IntIterable items)MutableIntListSynchronizedIntList. reject(IntPredicate predicate)MutableIntListUnmodifiableIntList. reject(IntPredicate predicate)MutableIntListSynchronizedIntList. rejectWithIndex(IntIntPredicate predicate)Returns a new MutableIntList excluding all elements with corresponding indexes matching the specified predicate.MutableIntListUnmodifiableIntList. rejectWithIndex(IntIntPredicate predicate)Returns a new MutableIntList excluding all elements with corresponding indexes matching the specified predicate.MutableIntListSynchronizedIntList. reverseThis()MutableIntListUnmodifiableIntList. reverseThis()MutableIntListSynchronizedIntList. select(IntPredicate predicate)MutableIntListUnmodifiableIntList. select(IntPredicate predicate)MutableIntListSynchronizedIntList. selectWithIndex(IntIntPredicate predicate)Returns a new MutableIntList including all elements with corresponding indexes matching the specified predicate.MutableIntListUnmodifiableIntList. selectWithIndex(IntIntPredicate predicate)Returns a new MutableIntList including all elements with corresponding indexes matching the specified predicate.MutableIntListSynchronizedIntList. shuffleThis()MutableIntListSynchronizedIntList. shuffleThis(java.util.Random rnd)MutableIntListUnmodifiableIntList. shuffleThis()MutableIntListSynchronizedIntList. sortThis()MutableIntListSynchronizedIntList. sortThis(IntComparator comparator)MutableIntListUnmodifiableIntList. sortThis()<T> MutableIntListSynchronizedIntList. sortThisBy(IntToObjectFunction<T> function)<T> MutableIntListSynchronizedIntList. sortThisBy(IntToObjectFunction<T> function, java.util.Comparator<? super T> comparator)MutableIntListIntArrayList. subList(int fromIndex, int toIndex)MutableIntListSynchronizedIntList. subList(int fromIndex, int toIndex)MutableIntListUnmodifiableIntList. subList(int fromIndex, int toIndex)MutableIntListSynchronizedIntList. toReversed()MutableIntListUnmodifiableIntList. toReversed()MutableIntListMutableIntListFactoryImpl. with()MutableIntListMutableIntListFactoryImpl. with(int... items)Creates a new list using the passeditemsargument as the backing store.MutableIntListMutableIntListFactoryImpl. withAll(java.lang.Iterable<java.lang.Integer> iterable)MutableIntListMutableIntListFactoryImpl. withAll(java.util.stream.IntStream items)MutableIntListMutableIntListFactoryImpl. withAll(IntIterable items)MutableIntListMutableIntListFactoryImpl. withInitialCapacity(int capacity)Constructors in org.eclipse.collections.impl.list.mutable.primitive with parameters of type MutableIntList Constructor Description BoxedMutableIntList(MutableIntList delegate)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 MutableIntListIntInterval. toList()MutableIntListIntInterval. 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 MutableIntListImmutableByteIntEmptyMap. toList()MutableIntListImmutableByteIntHashMap. toList()MutableIntListImmutableByteIntSingletonMap. toList()MutableIntListImmutableCharIntEmptyMap. toList()MutableIntListImmutableCharIntHashMap. toList()MutableIntListImmutableCharIntSingletonMap. toList()MutableIntListImmutableDoubleIntEmptyMap. toList()MutableIntListImmutableDoubleIntHashMap. toList()MutableIntListImmutableDoubleIntSingletonMap. toList()MutableIntListImmutableFloatIntEmptyMap. toList()MutableIntListImmutableFloatIntHashMap. toList()MutableIntListImmutableFloatIntSingletonMap. toList()MutableIntListImmutableIntIntEmptyMap. toList()MutableIntListImmutableIntIntHashMap. toList()MutableIntListImmutableIntIntSingletonMap. toList()MutableIntListImmutableLongIntEmptyMap. toList()MutableIntListImmutableLongIntHashMap. toList()MutableIntListImmutableLongIntSingletonMap. toList()MutableIntListImmutableObjectIntEmptyMap. toList()MutableIntListImmutableObjectIntHashMap. toList()MutableIntListImmutableObjectIntSingletonMap. toList()MutableIntListImmutableShortIntEmptyMap. toList()MutableIntListImmutableShortIntHashMap. toList()MutableIntListImmutableShortIntSingletonMap. toList()MutableIntListImmutableByteIntEmptyMap. toSortedList()MutableIntListImmutableByteIntHashMap. toSortedList()MutableIntListImmutableByteIntSingletonMap. toSortedList()MutableIntListImmutableCharIntEmptyMap. toSortedList()MutableIntListImmutableCharIntHashMap. toSortedList()MutableIntListImmutableCharIntSingletonMap. toSortedList()MutableIntListImmutableDoubleIntEmptyMap. toSortedList()MutableIntListImmutableDoubleIntHashMap. toSortedList()MutableIntListImmutableDoubleIntSingletonMap. toSortedList()MutableIntListImmutableFloatIntEmptyMap. toSortedList()MutableIntListImmutableFloatIntHashMap. toSortedList()MutableIntListImmutableFloatIntSingletonMap. toSortedList()MutableIntListImmutableIntIntEmptyMap. toSortedList()MutableIntListImmutableIntIntHashMap. toSortedList()MutableIntListImmutableIntIntSingletonMap. toSortedList()MutableIntListImmutableLongIntEmptyMap. toSortedList()MutableIntListImmutableLongIntHashMap. toSortedList()MutableIntListImmutableLongIntSingletonMap. toSortedList()MutableIntListImmutableObjectIntEmptyMap. toSortedList()MutableIntListImmutableObjectIntHashMap. toSortedList()MutableIntListImmutableObjectIntSingletonMap. toSortedList()MutableIntListImmutableShortIntEmptyMap. toSortedList()MutableIntListImmutableShortIntHashMap. toSortedList()MutableIntListImmutableShortIntSingletonMap. 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 MutableIntListAbstractMutableIntKeySet. toList()MutableIntListAbstractMutableIntValuesMap.AbstractIntValuesCollection. toList()MutableIntListIntBooleanHashMap.KeysView. toList()MutableIntListObjectIntHashMap. toList()MutableIntListObjectIntHashMap.ValuesCollection. toList()MutableIntListObjectIntHashMapWithHashingStrategy. toList()MutableIntListObjectIntHashMapWithHashingStrategy.ValuesCollection. toList()MutableIntListSynchronizedByteIntMap. toList()MutableIntListSynchronizedCharIntMap. toList()MutableIntListSynchronizedDoubleIntMap. toList()MutableIntListSynchronizedFloatIntMap. toList()MutableIntListSynchronizedIntIntMap. toList()MutableIntListSynchronizedLongIntMap. toList()MutableIntListSynchronizedObjectIntMap. toList()MutableIntListSynchronizedShortIntMap. toList()MutableIntListUnmodifiableByteIntMap. toList()MutableIntListUnmodifiableCharIntMap. toList()MutableIntListUnmodifiableDoubleIntMap. toList()MutableIntListUnmodifiableFloatIntMap. toList()MutableIntListUnmodifiableIntIntMap. toList()MutableIntListUnmodifiableLongIntMap. toList()MutableIntListUnmodifiableObjectIntMap. toList()MutableIntListUnmodifiableShortIntMap. toList()MutableIntListAbstractMutableIntKeySet. toSortedList()MutableIntListAbstractMutableIntValuesMap.AbstractIntValuesCollection. toSortedList()MutableIntListObjectIntHashMap. toSortedList()MutableIntListObjectIntHashMap.ValuesCollection. toSortedList()MutableIntListObjectIntHashMapWithHashingStrategy. toSortedList()MutableIntListObjectIntHashMapWithHashingStrategy.ValuesCollection. toSortedList()MutableIntListSynchronizedByteIntMap. toSortedList()MutableIntListSynchronizedCharIntMap. toSortedList()MutableIntListSynchronizedDoubleIntMap. toSortedList()MutableIntListSynchronizedFloatIntMap. toSortedList()MutableIntListSynchronizedIntIntMap. toSortedList()MutableIntListSynchronizedLongIntMap. toSortedList()MutableIntListSynchronizedObjectIntMap. toSortedList()MutableIntListSynchronizedShortIntMap. toSortedList()MutableIntListUnmodifiableByteIntMap. toSortedList()MutableIntListUnmodifiableCharIntMap. toSortedList()MutableIntListUnmodifiableDoubleIntMap. toSortedList()MutableIntListUnmodifiableFloatIntMap. toSortedList()MutableIntListUnmodifiableIntIntMap. toSortedList()MutableIntListUnmodifiableLongIntMap. toSortedList()MutableIntListUnmodifiableObjectIntMap. toSortedList()MutableIntListUnmodifiableShortIntMap. 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 MutableIntListOrderedMapAdapter. collectInt(IntFunction<? super V> intFunction)MutableIntListUnmodifiableMutableOrderedMap. 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 MutableIntListAbstractMutableSortedMap. collectInt(IntFunction<? super V> intFunction)MutableIntListSynchronizedSortedMap. collectInt(IntFunction<? super V> intFunction)MutableIntListUnmodifiableTreeMap. 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 MutableIntListAbstractIntIterable. toList()MutableIntListSynchronizedIntIterable. toList()MutableIntListAbstractIntIterable. toSortedList()MutableIntListSynchronizedIntIterable. 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 MutableIntListImmutableIntEmptySet. toList()MutableIntListImmutableIntSingletonSet. toList()MutableIntListImmutableIntEmptySet. toSortedList()MutableIntListImmutableIntSingletonSet. 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 MutableIntListSortedSetAdapter. collectInt(IntFunction<? super T> intFunction)MutableIntListSynchronizedSortedSet. collectInt(IntFunction<? super T> intFunction)MutableIntListTreeSortedSet. collectInt(IntFunction<? super T> intFunction)MutableIntListUnmodifiableSortedSet. 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 MutableIntListImmutableIntEmptyStack. toList()MutableIntListImmutableIntSingletonStack. toList()MutableIntListImmutableIntArrayStack. toSortedList()MutableIntListImmutableIntEmptyStack. toSortedList()MutableIntListImmutableIntSingletonStack. 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 MutableIntListSynchronizedIntStack. toList()MutableIntListUnmodifiableIntStack. toList()MutableIntListIntArrayStack. toSortedList()MutableIntListSynchronizedIntStack. toSortedList()MutableIntListUnmodifiableIntStack. 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 MutableIntListAbstractIntStack. 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 MutableIntListPrimitiveStreams. 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 MutableIntListCodePointAdapter. toList()MutableIntListCodePointList. 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> MutableIntListArrayIterate. collectInt(T[] objectArray, IntFunction<? super T> intFunction)static <T> MutableIntListArrayListIterate. collectInt(java.util.ArrayList<T> list, IntFunction<? super T> intFunction)static <T> MutableIntListListIterate. 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> MutableIntListRandomAccessListIterate. collectInt(java.util.List<T> list, IntFunction<? super T> intFunction)
-