Uses of Interface
org.eclipse.collections.api.list.primitive.ImmutableIntList
-
Packages that use ImmutableIntList Package Description 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 ImmutableIntList in org.eclipse.collections.api.bag.sorted
Methods in org.eclipse.collections.api.bag.sorted that return ImmutableIntList Modifier and Type Method Description ImmutableIntListImmutableSortedBag. collectInt(IntFunction<? super T> intFunction) -
Uses of ImmutableIntList in org.eclipse.collections.api.factory.list.primitive
Methods in org.eclipse.collections.api.factory.list.primitive that return ImmutableIntList Modifier and Type Method Description ImmutableIntListImmutableIntListFactory. empty()ImmutableIntListImmutableIntListFactory. of()Same asImmutableIntListFactory.empty().ImmutableIntListImmutableIntListFactory. of(int one)Same asImmutableIntListFactory.with(int).ImmutableIntListImmutableIntListFactory. of(int... items)Same asImmutableIntListFactory.with(int[]).ImmutableIntListImmutableIntListFactory. ofAll(Iterable<Integer> iterable)ImmutableIntListImmutableIntListFactory. ofAll(IntStream items)ImmutableIntListImmutableIntListFactory. ofAll(IntIterable items)ImmutableIntListImmutableIntListFactory. with()Same asImmutableIntListFactory.empty().ImmutableIntListImmutableIntListFactory. with(int one)ImmutableIntListImmutableIntListFactory. with(int... items)ImmutableIntListImmutableIntListFactory. withAll(Iterable<Integer> iterable)ImmutableIntListImmutableIntListFactory. withAll(IntStream items)ImmutableIntListImmutableIntListFactory. withAll(IntIterable items) -
Uses of ImmutableIntList in org.eclipse.collections.api.list
Methods in org.eclipse.collections.api.list that return ImmutableIntList Modifier and Type Method Description ImmutableIntListImmutableList. collectInt(IntFunction<? super T> intFunction) -
Uses of ImmutableIntList in org.eclipse.collections.api.list.primitive
Methods in org.eclipse.collections.api.list.primitive that return ImmutableIntList Modifier and Type Method Description ImmutableIntListImmutableIntList. distinct()ImmutableIntListImmutableIntList. newWith(int element)ImmutableIntListImmutableIntList. newWithAll(IntIterable elements)ImmutableIntListImmutableIntList. newWithout(int element)ImmutableIntListImmutableIntList. newWithoutAll(IntIterable elements)ImmutableIntListImmutableIntList. reject(IntPredicate predicate)default ImmutableIntListImmutableIntList. rejectWithIndex(IntIntPredicate predicate)Returns a new ImmutableIntList excluding all elements with corresponding indexes matching the specified predicate.ImmutableIntListImmutableIntList. select(IntPredicate predicate)default ImmutableIntListImmutableIntList. selectWithIndex(IntIntPredicate predicate)Returns a new ImmutableIntList including all elements with corresponding indexes matching the specified predicate.ImmutableIntListImmutableIntList. subList(int fromIndex, int toIndex)default ImmutableIntListImmutableIntList. tap(IntProcedure procedure)ImmutableIntListIntList. toImmutable()Returns an immutable copy of this list.ImmutableIntListMutableIntList. toImmutable()Returns an immutable copy of this list.ImmutableIntListImmutableIntList. toReversed() -
Uses of ImmutableIntList in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return ImmutableIntList Modifier and Type Method Description ImmutableIntListImmutableOrderedMap. collectInt(IntFunction<? super V> intFunction) -
Uses of ImmutableIntList in org.eclipse.collections.api.map.sorted
Methods in org.eclipse.collections.api.map.sorted that return ImmutableIntList Modifier and Type Method Description ImmutableIntListImmutableSortedMap. collectInt(IntFunction<? super V> intFunction) -
Uses of ImmutableIntList in org.eclipse.collections.api.set.sorted
Methods in org.eclipse.collections.api.set.sorted that return ImmutableIntList Modifier and Type Method Description ImmutableIntListImmutableSortedSet. collectInt(IntFunction<? super T> intFunction)
-