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. -
-
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, 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(Iterable<Integer> iterable)MutableIntListMutableIntListFactory. ofAll(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(Iterable<Integer> iterable)MutableIntListMutableIntListFactory. withAll(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(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, 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)
-