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.
-
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(). but takes in an initial capacitydefault 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)