Uses of Interface
org.eclipse.collections.api.IntIterable
Packages that use IntIterable
Package
Description
This package contains interfaces for Eclipse Collections API.
This package contains API for Primitive Bags with Mutable and Immutable variants.
This package contains mutable and immutable primitive collection API.
This package contains factory API for creating immutable primitive list instances.
This package contains factory API for creating primitive set instances.
This package contains factory API for creating primitive stack instances.
This package contains mutable and immutable primitive list API.
This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.
This package contains API for mutable and immutable primitive sets.
This package contains mutable and immutable primitive stack API.
-
Uses of IntIterable in org.eclipse.collections.api
Subinterfaces of IntIterable in org.eclipse.collections.apiModifier and TypeInterfaceDescriptioninterfaceThis file was automatically generated from template file lazyPrimitiveIterable.stg.Methods in org.eclipse.collections.api that return IntIterableModifier and TypeMethodDescriptionRichIterable.collectInt(IntFunction<? super T> intFunction) Returns a new primitiveintiterable with the results of applying the specified function on each element of the source collection.IntIterable.reject(IntPredicate predicate) Returns a new IntIterable with all of the elements in the IntIterable that return false for the specified predicate.IntIterable.select(IntPredicate predicate) Returns a new IntIterable with all of the elements in the IntIterable that return true for the specified predicate.default IntIterableIntIterable.tap(IntProcedure procedure) Methods in org.eclipse.collections.api that return types with arguments of type IntIterableModifier and TypeMethodDescriptiondefault RichIterable<IntIterable>IntIterable.chunk(int size) Partitions elements in fixed size chunks.Methods in org.eclipse.collections.api with parameters of type IntIterableModifier and TypeMethodDescriptiondefault booleanIntIterable.containsAll(IntIterable source) Returns true if all of the values specified in the source IntIterable are contained in the IntIterable, and false if they are not.default booleanIntIterable.containsAny(IntIterable source) Returns true if any of the values specified in the source IntIterable are contained in the IntIterable, and false if they are not.default booleanIntIterable.containsNone(IntIterable source) Returns true if none of the values specified in the source IntIterable are contained in the IntIterable, and false if they are.Method parameters in org.eclipse.collections.api with type arguments of type IntIterableModifier and TypeMethodDescriptiondefault <R extends MutableIntCollection>
RRichIterable.flatCollectInt(Function<? super T, ? extends IntIterable> function, R target) Same as flatCollect, only the results are collected into the target collection. -
Uses of IntIterable in org.eclipse.collections.api.bag.primitive
Subinterfaces of IntIterable in org.eclipse.collections.api.bag.primitiveModifier and TypeInterfaceDescriptioninterfaceThis file was automatically generated from template file immutablePrimitiveBag.stg.interfaceThis file was automatically generated from template file primitiveBag.stg.interfaceThis file was automatically generated from template file mutablePrimitiveBag.stg.Methods in org.eclipse.collections.api.bag.primitive with parameters of type IntIterableModifier and TypeMethodDescriptionImmutableIntBag.newWithAll(IntIterable elements) ImmutableIntBag.newWithoutAll(IntIterable elements) MutableIntBag.withAll(IntIterable elements) MutableIntBag.withoutAll(IntIterable elements) -
Uses of IntIterable in org.eclipse.collections.api.collection.primitive
Subinterfaces of IntIterable in org.eclipse.collections.api.collection.primitiveModifier and TypeInterfaceDescriptioninterfaceThis file was automatically generated from template file immutablePrimitiveCollection.stg.interfaceThis file was automatically generated from template file mutablePrimitiveCollection.stg.Methods in org.eclipse.collections.api.collection.primitive with parameters of type IntIterableModifier and TypeMethodDescriptionbooleanMutableIntCollection.addAll(IntIterable source) ImmutableIntCollection.newWithAll(IntIterable elements) ImmutableIntCollection.newWithoutAll(IntIterable elements) booleanMutableIntCollection.removeAll(IntIterable source) booleanMutableIntCollection.retainAll(IntIterable elements) MutableIntCollection.withAll(IntIterable elements) MutableIntCollection.withoutAll(IntIterable elements) -
Uses of IntIterable in org.eclipse.collections.api.factory.bag.primitive
Methods in org.eclipse.collections.api.factory.bag.primitive with parameters of type IntIterableModifier and TypeMethodDescriptionImmutableIntBagFactory.ofAll(IntIterable items) MutableIntBagFactory.ofAll(IntIterable items) ImmutableIntBagFactory.withAll(IntIterable items) MutableIntBagFactory.withAll(IntIterable items) -
Uses of IntIterable in org.eclipse.collections.api.factory.list.primitive
Methods in org.eclipse.collections.api.factory.list.primitive with parameters of type IntIterableModifier and TypeMethodDescriptionImmutableIntListFactory.ofAll(IntIterable items) MutableIntListFactory.ofAll(IntIterable items) ImmutableIntListFactory.withAll(IntIterable items) MutableIntListFactory.withAll(IntIterable items) -
Uses of IntIterable in org.eclipse.collections.api.factory.set.primitive
Methods in org.eclipse.collections.api.factory.set.primitive with parameters of type IntIterableModifier and TypeMethodDescriptionImmutableIntSetFactory.ofAll(IntIterable items) MutableIntSetFactory.ofAll(IntIterable items) ImmutableIntSetFactory.withAll(IntIterable items) MutableIntSetFactory.withAll(IntIterable items) -
Uses of IntIterable in org.eclipse.collections.api.factory.stack.primitive
Methods in org.eclipse.collections.api.factory.stack.primitive with parameters of type IntIterableModifier and TypeMethodDescriptionImmutableIntStackFactory.ofAll(IntIterable items) MutableIntStackFactory.ofAll(IntIterable items) ImmutableIntStackFactory.ofAllReversed(IntIterable items) MutableIntStackFactory.ofAllReversed(IntIterable items) ImmutableIntStackFactory.withAll(IntIterable items) MutableIntStackFactory.withAll(IntIterable items) ImmutableIntStackFactory.withAllReversed(IntIterable items) MutableIntStackFactory.withAllReversed(IntIterable items) -
Uses of IntIterable in org.eclipse.collections.api.list.primitive
Subinterfaces of IntIterable in org.eclipse.collections.api.list.primitiveModifier and TypeInterfaceDescriptioninterfaceThis file was automatically generated from template file immutablePrimitiveList.stg.interfaceThis file was automatically generated from template file primitiveList.stg.interfaceThis file was automatically generated from template file mutablePrimitiveList.stg.Methods in org.eclipse.collections.api.list.primitive with parameters of type IntIterableModifier and TypeMethodDescriptionbooleanMutableIntList.addAllAtIndex(int index, IntIterable source) ImmutableIntList.newWithAll(IntIterable elements) ImmutableIntList.newWithoutAll(IntIterable elements) MutableIntList.withAll(IntIterable elements) MutableIntList.withoutAll(IntIterable elements) default ImmutableList<IntIntPair>ImmutableIntList.zipInt(IntIterable iterable) Returns anImmutableListformed from thisImmutableIntListand anotherIntListby combining corresponding elements in pairs.default ListIterable<IntIntPair>IntList.zipInt(IntIterable iterable) Returns aListIterableformed from thisIntListand anotherIntListby combining corresponding elements in pairs.default MutableList<IntIntPair>MutableIntList.zipInt(IntIterable iterable) Returns aMutableListformed from thisMutableIntListand anotherIntListby combining corresponding elements in pairs. -
Uses of IntIterable in org.eclipse.collections.api.map.primitive
Subinterfaces of IntIterable in org.eclipse.collections.api.map.primitiveModifier and TypeInterfaceDescriptioninterfaceThis file was automatically generated from template file primitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file primitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file primitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file primitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file immutableObjectPrimitiveMap.stg.interfaceThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file primitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file primitiveValuesMap.stg.interfaceThis file was automatically generated from template file primitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file mutablePrimitiveValuesMap.stg.interfaceThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file mutableObjectPrimitiveMap.stg.interfaceThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceObjectIntMap<K>This file was automatically generated from template file objectPrimitiveMap.stg.interfaceThis file was automatically generated from template file primitivePrimitiveMap.stg.Methods in org.eclipse.collections.api.map.primitive with parameters of type IntIterableModifier and TypeMethodDescriptionImmutableIntBooleanMap.newWithoutAllKeys(IntIterable keys) Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableIntByteMap.newWithoutAllKeys(IntIterable keys) Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableIntCharMap.newWithoutAllKeys(IntIterable keys) Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableIntDoubleMap.newWithoutAllKeys(IntIterable keys) Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableIntFloatMap.newWithoutAllKeys(IntIterable keys) Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableIntIntMap.newWithoutAllKeys(IntIterable keys) Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableIntLongMap.newWithoutAllKeys(IntIterable keys) Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableIntObjectMap.newWithoutAllKeys(IntIterable keys) Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableIntShortMap.newWithoutAllKeys(IntIterable keys) Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.MutableIntBooleanMap.withoutAllKeys(IntIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableIntByteMap.withoutAllKeys(IntIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableIntCharMap.withoutAllKeys(IntIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableIntDoubleMap.withoutAllKeys(IntIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableIntFloatMap.withoutAllKeys(IntIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableIntIntMap.withoutAllKeys(IntIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableIntLongMap.withoutAllKeys(IntIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableIntObjectMap.withoutAllKeys(IntIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableIntShortMap.withoutAllKeys(IntIterable keys) Removes the mappings associated with all the keys, if they exist, from this map. -
Uses of IntIterable in org.eclipse.collections.api.ordered.primitive
Subinterfaces of IntIterable in org.eclipse.collections.api.ordered.primitiveModifier and TypeInterfaceDescriptioninterfaceThis file was automatically generated from template file orderedPrimitiveIterable.stg.interfaceThis file was automatically generated from template file reversiblePrimitiveIterable.stg. -
Uses of IntIterable in org.eclipse.collections.api.set.primitive
Subinterfaces of IntIterable in org.eclipse.collections.api.set.primitiveModifier and TypeInterfaceDescriptioninterfaceThis file was automatically generated from template file immutablePrimitiveSet.stg.interfaceThis file was automatically generated from template file primitiveSet.stg.interfaceThis file was automatically generated from template file mutablePrimitiveSet.stg.Methods in org.eclipse.collections.api.set.primitive with parameters of type IntIterableModifier and TypeMethodDescriptionImmutableIntSet.newWithAll(IntIterable elements) ImmutableIntSet.newWithoutAll(IntIterable elements) MutableIntSet.withAll(IntIterable elements) MutableIntSet.withoutAll(IntIterable elements) -
Uses of IntIterable in org.eclipse.collections.api.stack.primitive
Subinterfaces of IntIterable in org.eclipse.collections.api.stack.primitiveModifier and TypeInterfaceDescriptioninterfaceThis file was automatically generated from template file immutablePrimitiveStack.stg.interfaceThis file was automatically generated from template file primitiveStack.stg.interfaceThis file was automatically generated from template file mutablePrimitiveStack.stg.