Uses of Interface
org.eclipse.collections.api.IntIterable
-
Packages that use IntIterable Package Description org.eclipse.collections.api This package contains interfaces for Eclipse Collections API.org.eclipse.collections.api.bag.primitive This package contains API for Primitive Bags with Mutable and Immutable variants.org.eclipse.collections.api.collection.primitive This package contains mutable and immutable primitive collection API.org.eclipse.collections.api.factory.bag.primitive org.eclipse.collections.api.factory.list.primitive This package contains factory API for creating immutable primitive list instances.org.eclipse.collections.api.factory.set.primitive This package contains factory API for creating primitive set instances.org.eclipse.collections.api.factory.stack.primitive This package contains factory API for creating primitive stack instances.org.eclipse.collections.api.list.primitive This package contains mutable and immutable primitive list API.org.eclipse.collections.api.map.primitive This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.org.eclipse.collections.api.ordered.primitive org.eclipse.collections.api.set.primitive This package contains API for mutable and immutable primitive sets.org.eclipse.collections.api.stack.primitive This package contains mutable and immutable primitive stack API. -
-
Uses of IntIterable in org.eclipse.collections.api
Subinterfaces of IntIterable in org.eclipse.collections.api Modifier and Type Interface Description interfaceLazyIntIterableThis file was automatically generated from template file lazyPrimitiveIterable.stg.Methods in org.eclipse.collections.api that return IntIterable Modifier and Type Method Description IntIterableRichIterable. collectInt(IntFunction<? super T> intFunction)Returns a new primitiveintiterable with the results of applying the specified function on each element of the source collection.IntIterableIntIterable. reject(IntPredicate predicate)Returns a new IntIterable with all of the elements in the IntIterable that return false for the specified predicate.IntIterableIntIterable. 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 IntIterable Modifier and Type Method Description default RichIterable<IntIterable>IntIterable. chunk(int size)Partitions elements in fixed size chunks.Methods in org.eclipse.collections.api with parameters of type IntIterable Modifier and Type Method Description default 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 IntIterable Modifier and Type Method Description default <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.primitive Modifier and Type Interface Description interfaceImmutableIntBagThis file was automatically generated from template file immutablePrimitiveBag.stg.interfaceIntBagThis file was automatically generated from template file primitiveBag.stg.interfaceMutableIntBagThis file was automatically generated from template file mutablePrimitiveBag.stg.Methods in org.eclipse.collections.api.bag.primitive with parameters of type IntIterable Modifier and Type Method Description ImmutableIntBagImmutableIntBag. newWithAll(IntIterable elements)ImmutableIntBagImmutableIntBag. newWithoutAll(IntIterable elements)MutableIntBagMutableIntBag. withAll(IntIterable elements)MutableIntBagMutableIntBag. withoutAll(IntIterable elements) -
Uses of IntIterable in org.eclipse.collections.api.collection.primitive
Subinterfaces of IntIterable in org.eclipse.collections.api.collection.primitive Modifier and Type Interface Description interfaceImmutableIntCollectionThis file was automatically generated from template file immutablePrimitiveCollection.stg.interfaceMutableIntCollectionThis file was automatically generated from template file mutablePrimitiveCollection.stg.Methods in org.eclipse.collections.api.collection.primitive with parameters of type IntIterable Modifier and Type Method Description booleanMutableIntCollection. addAll(IntIterable source)ImmutableIntCollectionImmutableIntCollection. newWithAll(IntIterable elements)ImmutableIntCollectionImmutableIntCollection. newWithoutAll(IntIterable elements)booleanMutableIntCollection. removeAll(IntIterable source)booleanMutableIntCollection. retainAll(IntIterable elements)MutableIntCollectionMutableIntCollection. withAll(IntIterable elements)MutableIntCollectionMutableIntCollection. 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 IntIterable Modifier and Type Method Description ImmutableIntBagImmutableIntBagFactory. ofAll(IntIterable items)MutableIntBagMutableIntBagFactory. ofAll(IntIterable items)ImmutableIntBagImmutableIntBagFactory. withAll(IntIterable items)MutableIntBagMutableIntBagFactory. 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 IntIterable Modifier and Type Method Description ImmutableIntListImmutableIntListFactory. ofAll(IntIterable items)MutableIntListMutableIntListFactory. ofAll(IntIterable items)ImmutableIntListImmutableIntListFactory. withAll(IntIterable items)MutableIntListMutableIntListFactory. 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 IntIterable Modifier and Type Method Description ImmutableIntSetImmutableIntSetFactory. ofAll(IntIterable items)MutableIntSetMutableIntSetFactory. ofAll(IntIterable items)ImmutableIntSetImmutableIntSetFactory. withAll(IntIterable items)MutableIntSetMutableIntSetFactory. 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 IntIterable Modifier and Type Method Description ImmutableIntStackImmutableIntStackFactory. ofAll(IntIterable items)MutableIntStackMutableIntStackFactory. ofAll(IntIterable items)ImmutableIntStackImmutableIntStackFactory. ofAllReversed(IntIterable items)MutableIntStackMutableIntStackFactory. ofAllReversed(IntIterable items)ImmutableIntStackImmutableIntStackFactory. withAll(IntIterable items)MutableIntStackMutableIntStackFactory. withAll(IntIterable items)ImmutableIntStackImmutableIntStackFactory. withAllReversed(IntIterable items)MutableIntStackMutableIntStackFactory. withAllReversed(IntIterable items) -
Uses of IntIterable in org.eclipse.collections.api.list.primitive
Subinterfaces of IntIterable in org.eclipse.collections.api.list.primitive Modifier and Type Interface Description interfaceImmutableIntListThis file was automatically generated from template file immutablePrimitiveList.stg.interfaceIntListThis file was automatically generated from template file primitiveList.stg.interfaceMutableIntListThis file was automatically generated from template file mutablePrimitiveList.stg.Methods in org.eclipse.collections.api.list.primitive with parameters of type IntIterable Modifier and Type Method Description booleanMutableIntList. addAllAtIndex(int index, IntIterable source)ImmutableIntListImmutableIntList. newWithAll(IntIterable elements)ImmutableIntListImmutableIntList. newWithoutAll(IntIterable elements)MutableIntListMutableIntList. withAll(IntIterable elements)MutableIntListMutableIntList. 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.primitive Modifier and Type Interface Description interfaceByteIntMapThis file was automatically generated from template file primitivePrimitiveMap.stg.interfaceCharIntMapThis file was automatically generated from template file primitivePrimitiveMap.stg.interfaceDoubleIntMapThis file was automatically generated from template file primitivePrimitiveMap.stg.interfaceFloatIntMapThis file was automatically generated from template file primitivePrimitiveMap.stg.interfaceImmutableByteIntMapThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceImmutableCharIntMapThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceImmutableDoubleIntMapThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceImmutableFloatIntMapThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceImmutableIntIntMapThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceImmutableLongIntMapThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceImmutableObjectIntMap<K>This file was automatically generated from template file immutableObjectPrimitiveMap.stg.interfaceImmutableShortIntMapThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceIntIntMapThis file was automatically generated from template file primitivePrimitiveMap.stg.interfaceIntValuesMapThis file was automatically generated from template file primitiveValuesMap.stg.interfaceLongIntMapThis file was automatically generated from template file primitivePrimitiveMap.stg.interfaceMutableByteIntMapThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceMutableCharIntMapThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceMutableDoubleIntMapThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceMutableFloatIntMapThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceMutableIntIntMapThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceMutableIntValuesMapThis file was automatically generated from template file mutablePrimitiveValuesMap.stg.interfaceMutableLongIntMapThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceMutableObjectIntMap<K>This file was automatically generated from template file mutableObjectPrimitiveMap.stg.interfaceMutableShortIntMapThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceObjectIntMap<K>This file was automatically generated from template file objectPrimitiveMap.stg.interfaceShortIntMapThis file was automatically generated from template file primitivePrimitiveMap.stg.Methods in org.eclipse.collections.api.map.primitive with parameters of type IntIterable Modifier and Type Method Description ImmutableIntBooleanMapImmutableIntBooleanMap. 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.ImmutableIntByteMapImmutableIntByteMap. 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.ImmutableIntCharMapImmutableIntCharMap. 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.ImmutableIntDoubleMapImmutableIntDoubleMap. 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.ImmutableIntFloatMapImmutableIntFloatMap. 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.ImmutableIntIntMapImmutableIntIntMap. 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.ImmutableIntLongMapImmutableIntLongMap. 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<V>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.ImmutableIntShortMapImmutableIntShortMap. 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.MutableIntBooleanMapMutableIntBooleanMap. withoutAllKeys(IntIterable keys)Removes the mappings associated with all the keys, if they exist, from this map.MutableIntByteMapMutableIntByteMap. withoutAllKeys(IntIterable keys)Removes the mappings associated with all the keys, if they exist, from this map.MutableIntCharMapMutableIntCharMap. withoutAllKeys(IntIterable keys)Removes the mappings associated with all the keys, if they exist, from this map.MutableIntDoubleMapMutableIntDoubleMap. withoutAllKeys(IntIterable keys)Removes the mappings associated with all the keys, if they exist, from this map.MutableIntFloatMapMutableIntFloatMap. withoutAllKeys(IntIterable keys)Removes the mappings associated with all the keys, if they exist, from this map.MutableIntIntMapMutableIntIntMap. withoutAllKeys(IntIterable keys)Removes the mappings associated with all the keys, if they exist, from this map.MutableIntLongMapMutableIntLongMap. withoutAllKeys(IntIterable keys)Removes the mappings associated with all the keys, if they exist, from this map.MutableIntObjectMap<V>MutableIntObjectMap. withoutAllKeys(IntIterable keys)Removes the mappings associated with all the keys, if they exist, from this map.MutableIntShortMapMutableIntShortMap. 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.primitive Modifier and Type Interface Description interfaceOrderedIntIterableThis file was automatically generated from template file orderedPrimitiveIterable.stg.interfaceReversibleIntIterableThis 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.primitive Modifier and Type Interface Description interfaceImmutableIntSetThis file was automatically generated from template file immutablePrimitiveSet.stg.interfaceIntSetThis file was automatically generated from template file primitiveSet.stg.interfaceMutableIntSetThis file was automatically generated from template file mutablePrimitiveSet.stg.Methods in org.eclipse.collections.api.set.primitive with parameters of type IntIterable Modifier and Type Method Description ImmutableIntSetImmutableIntSet. newWithAll(IntIterable elements)ImmutableIntSetImmutableIntSet. newWithoutAll(IntIterable elements)MutableIntSetMutableIntSet. withAll(IntIterable elements)MutableIntSetMutableIntSet. withoutAll(IntIterable elements) -
Uses of IntIterable in org.eclipse.collections.api.stack.primitive
Subinterfaces of IntIterable in org.eclipse.collections.api.stack.primitive Modifier and Type Interface Description interfaceImmutableIntStackThis file was automatically generated from template file immutablePrimitiveStack.stg.interfaceIntStackThis file was automatically generated from template file primitiveStack.stg.interfaceMutableIntStackThis file was automatically generated from template file mutablePrimitiveStack.stg.
-