Uses of Interface
org.eclipse.collections.api.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 | |
org.eclipse.collections.api.factory.stack.primitive | |
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.
|
org.eclipse.collections.impl |
This package contains implementations for Eclipse Collections API.
|
org.eclipse.collections.impl.bag | |
org.eclipse.collections.impl.bag.immutable.primitive |
This package contains implementations of the immutable primitive bag interfaces.
|
org.eclipse.collections.impl.bag.mutable.primitive |
This package contains implementations of the mutable primitive bag interfaces.
|
org.eclipse.collections.impl.bimap | |
org.eclipse.collections.impl.bimap.mutable |
This package contains implementations of the
MutableBiMap interface. |
org.eclipse.collections.impl.collection | |
org.eclipse.collections.impl.collection.mutable |
This package contains implementations of the
MutableCollection interface. |
org.eclipse.collections.impl.collection.mutable.primitive |
This package contains implementations of the mutable primitive collection interfaces.
|
org.eclipse.collections.impl.lazy.primitive |
This package contains implementations of the lazy primitive iterator interfaces.
|
org.eclipse.collections.impl.list.immutable.primitive |
This package contains implementations of immutable primitive list interfaces and immutable primitive list factory interfaces.
|
org.eclipse.collections.impl.list.mutable |
This package contains implementations of the
MutableList interface. |
org.eclipse.collections.impl.list.mutable.primitive |
This package contains implementations of the mutable primitive list interfaces.
|
org.eclipse.collections.impl.list.primitive |
This package contains implementations of the primitive list interfaces.
|
org.eclipse.collections.impl.map.immutable.primitive |
This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.
|
org.eclipse.collections.impl.map.mutable |
This package contains implementations of the
MutableMap interface. |
org.eclipse.collections.impl.map.mutable.primitive |
This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
|
org.eclipse.collections.impl.map.ordered.mutable | |
org.eclipse.collections.impl.map.sorted.mutable |
This package contains implementations of the
MutableSortedMap interface. |
org.eclipse.collections.impl.primitive | |
org.eclipse.collections.impl.set.immutable.primitive |
This package contains implementations of the immutable primitive set interfaces.
|
org.eclipse.collections.impl.set.mutable.primitive |
This package contains implementations of the mutable primitive set interfaces.
|
org.eclipse.collections.impl.set.primitive | |
org.eclipse.collections.impl.stack.immutable.primitive |
This package contains implementations of the immutable primitive stack interfaces.
|
org.eclipse.collections.impl.stack.mutable |
This package contains implementations of the
MutableStack interface. |
org.eclipse.collections.impl.stack.mutable.primitive |
This package contains implementations of the mutable primitive stack interfaces.
|
org.eclipse.collections.impl.stack.primitive | |
org.eclipse.collections.impl.string.immutable | |
org.eclipse.collections.impl.utility.internal.primitive | |
org.eclipse.collections.impl.utility.primitive |
-
Uses of IntIterable in org.eclipse.collections.api
Subinterfaces of IntIterable in org.eclipse.collections.api Modifier and Type Interface Description interface
LazyIntIterable
This file was automatically generated from template file lazyPrimitiveIterable.stg.Methods in org.eclipse.collections.api that return IntIterable Modifier and Type Method Description IntIterable
RichIterable. collectInt(IntFunction<? super T> intFunction)
Returns a new primitiveint
iterable with the results of applying the specified function on each element of the source collection.IntIterable
IntIterable. reject(IntPredicate predicate)
Returns a new IntIterable with all of the elements in the IntIterable that return false for the specified predicate.IntIterable
IntIterable. select(IntPredicate predicate)
Returns a new IntIterable with all of the elements in the IntIterable that return true for the specified predicate.default IntIterable
IntIterable. 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 boolean
IntIterable. containsAll(IntIterable source)
Returns true if the all of the values specified in the source IntIterable are contained in the IntIterable, and false if they are not.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 interface
ImmutableIntBag
This file was automatically generated from template file immutablePrimitiveBag.stg.interface
IntBag
This file was automatically generated from template file primitiveBag.stg.interface
MutableIntBag
This 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 ImmutableIntBag
ImmutableIntBag. newWithAll(IntIterable elements)
ImmutableIntBag
ImmutableIntBag. newWithoutAll(IntIterable elements)
MutableIntBag
MutableIntBag. withAll(IntIterable elements)
MutableIntBag
MutableIntBag. 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 interface
ImmutableIntCollection
This file was automatically generated from template file immutablePrimitiveCollection.stg.interface
MutableIntCollection
This 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 boolean
MutableIntCollection. addAll(IntIterable source)
ImmutableIntCollection
ImmutableIntCollection. newWithAll(IntIterable elements)
ImmutableIntCollection
ImmutableIntCollection. newWithoutAll(IntIterable elements)
boolean
MutableIntCollection. removeAll(IntIterable source)
boolean
MutableIntCollection. retainAll(IntIterable elements)
MutableIntCollection
MutableIntCollection. withAll(IntIterable elements)
MutableIntCollection
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 IntIterable Modifier and Type Method Description ImmutableIntBag
ImmutableIntBagFactory. ofAll(IntIterable items)
MutableIntBag
MutableIntBagFactory. ofAll(IntIterable items)
ImmutableIntBag
ImmutableIntBagFactory. withAll(IntIterable items)
MutableIntBag
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 IntIterable Modifier and Type Method Description ImmutableIntList
ImmutableIntListFactory. ofAll(IntIterable items)
MutableIntList
MutableIntListFactory. ofAll(IntIterable items)
ImmutableIntList
ImmutableIntListFactory. withAll(IntIterable items)
MutableIntList
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 IntIterable Modifier and Type Method Description ImmutableIntSet
ImmutableIntSetFactory. ofAll(IntIterable items)
MutableIntSet
MutableIntSetFactory. ofAll(IntIterable items)
ImmutableIntSet
ImmutableIntSetFactory. withAll(IntIterable items)
MutableIntSet
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 IntIterable Modifier and Type Method Description ImmutableIntStack
ImmutableIntStackFactory. ofAll(IntIterable items)
MutableIntStack
MutableIntStackFactory. ofAll(IntIterable items)
ImmutableIntStack
ImmutableIntStackFactory. ofAllReversed(IntIterable items)
MutableIntStack
MutableIntStackFactory. ofAllReversed(IntIterable items)
ImmutableIntStack
ImmutableIntStackFactory. withAll(IntIterable items)
MutableIntStack
MutableIntStackFactory. withAll(IntIterable items)
ImmutableIntStack
ImmutableIntStackFactory. withAllReversed(IntIterable items)
MutableIntStack
MutableIntStackFactory. 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 interface
ImmutableIntList
This file was automatically generated from template file immutablePrimitiveList.stg.interface
IntList
This file was automatically generated from template file primitiveList.stg.interface
MutableIntList
This 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 boolean
MutableIntList. addAllAtIndex(int index, IntIterable source)
ImmutableIntList
ImmutableIntList. newWithAll(IntIterable elements)
ImmutableIntList
ImmutableIntList. newWithoutAll(IntIterable elements)
MutableIntList
MutableIntList. withAll(IntIterable elements)
MutableIntList
MutableIntList. withoutAll(IntIterable elements)
default ImmutableList<IntIntPair>
ImmutableIntList. zipInt(IntIterable iterable)
Returns anImmutableList
formed from thisImmutableIntList
and anotherIntList
by combining corresponding elements in pairs.default ListIterable<IntIntPair>
IntList. zipInt(IntIterable iterable)
Returns aListIterable
formed from thisIntList
and anotherIntList
by combining corresponding elements in pairs.default MutableList<IntIntPair>
MutableIntList. zipInt(IntIterable iterable)
Returns aMutableList
formed from thisMutableIntList
and anotherIntList
by 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 interface
ByteIntMap
This file was automatically generated from template file primitivePrimitiveMap.stg.interface
CharIntMap
This file was automatically generated from template file primitivePrimitiveMap.stg.interface
DoubleIntMap
This file was automatically generated from template file primitivePrimitiveMap.stg.interface
FloatIntMap
This file was automatically generated from template file primitivePrimitiveMap.stg.interface
ImmutableByteIntMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interface
ImmutableCharIntMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interface
ImmutableDoubleIntMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interface
ImmutableFloatIntMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interface
ImmutableIntIntMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interface
ImmutableLongIntMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interface
ImmutableObjectIntMap<K>
This file was automatically generated from template file immutableObjectPrimitiveMap.stg.interface
ImmutableShortIntMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interface
IntIntMap
This file was automatically generated from template file primitivePrimitiveMap.stg.interface
IntValuesMap
This file was automatically generated from template file primitiveValuesMap.stg.interface
LongIntMap
This file was automatically generated from template file primitivePrimitiveMap.stg.interface
MutableByteIntMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interface
MutableCharIntMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interface
MutableDoubleIntMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interface
MutableFloatIntMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interface
MutableIntIntMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interface
MutableIntValuesMap
This file was automatically generated from template file mutablePrimitiveValuesMap.stg.interface
MutableLongIntMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interface
MutableObjectIntMap<K>
This file was automatically generated from template file mutableObjectPrimitiveMap.stg.interface
MutableShortIntMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interface
ObjectIntMap<K>
This file was automatically generated from template file objectPrimitiveMap.stg.interface
ShortIntMap
This 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 ImmutableIntBooleanMap
ImmutableIntBooleanMap. 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
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
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
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
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
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
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<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.ImmutableIntShortMap
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
MutableIntBooleanMap. withoutAllKeys(IntIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.MutableIntByteMap
MutableIntByteMap. withoutAllKeys(IntIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.MutableIntCharMap
MutableIntCharMap. withoutAllKeys(IntIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.MutableIntDoubleMap
MutableIntDoubleMap. withoutAllKeys(IntIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.MutableIntFloatMap
MutableIntFloatMap. withoutAllKeys(IntIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.MutableIntIntMap
MutableIntIntMap. withoutAllKeys(IntIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.MutableIntLongMap
MutableIntLongMap. 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.MutableIntShortMap
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.primitive Modifier and Type Interface Description interface
OrderedIntIterable
This file was automatically generated from template file orderedPrimitiveIterable.stg.interface
ReversibleIntIterable
This 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 interface
ImmutableIntSet
This file was automatically generated from template file immutablePrimitiveSet.stg.interface
IntSet
This file was automatically generated from template file primitiveSet.stg.interface
MutableIntSet
This 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 ImmutableIntSet
ImmutableIntSet. newWithAll(IntIterable elements)
ImmutableIntSet
ImmutableIntSet. newWithoutAll(IntIterable elements)
MutableIntSet
MutableIntSet. withAll(IntIterable elements)
MutableIntSet
MutableIntSet. 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 interface
ImmutableIntStack
This file was automatically generated from template file immutablePrimitiveStack.stg.interface
IntStack
This file was automatically generated from template file primitiveStack.stg.interface
MutableIntStack
This file was automatically generated from template file mutablePrimitiveStack.stg. -
Uses of IntIterable in org.eclipse.collections.impl
Methods in org.eclipse.collections.impl that return IntIterable Modifier and Type Method Description IntIterable
UnmodifiableRichIterable. collectInt(IntFunction<? super T> intFunction)
Method parameters in org.eclipse.collections.impl with type arguments of type IntIterable Modifier and Type Method Description <R extends MutableIntCollection>
RUnmodifiableRichIterable. flatCollectInt(Function<? super T,? extends IntIterable> function, R target)
-
Uses of IntIterable in org.eclipse.collections.impl.bag
Method parameters in org.eclipse.collections.impl.bag with type arguments of type IntIterable Modifier and Type Method Description <R extends MutableIntCollection>
RAbstractBag. flatCollectInt(Function<? super T,? extends IntIterable> function, R target)
-
Uses of IntIterable in org.eclipse.collections.impl.bag.immutable.primitive
Methods in org.eclipse.collections.impl.bag.immutable.primitive with parameters of type IntIterable Modifier and Type Method Description ImmutableIntBag
ImmutableIntBagFactoryImpl. ofAll(IntIterable items)
ImmutableIntBag
ImmutableIntBagFactoryImpl. withAll(IntIterable items)
-
Uses of IntIterable in org.eclipse.collections.impl.bag.mutable.primitive
Classes in org.eclipse.collections.impl.bag.mutable.primitive that implement IntIterable Modifier and Type Class Description class
IntHashBag
IntHashBag is similar toHashBag
, and is memory-optimized for int primitives.class
SynchronizedIntBag
A synchronized view of aMutableIntBag
.class
UnmodifiableIntBag
This file was automatically generated from template file unmodifiablePrimitiveBag.stg.Methods in org.eclipse.collections.impl.bag.mutable.primitive that return types with arguments of type IntIterable Modifier and Type Method Description RichIterable<IntIterable>
IntHashBag. chunk(int size)
Methods in org.eclipse.collections.impl.bag.mutable.primitive with parameters of type IntIterable Modifier and Type Method Description boolean
IntHashBag. addAll(IntIterable source)
static IntHashBag
IntHashBag. newBag(IntIterable source)
MutableIntBag
MutableIntBagFactoryImpl. ofAll(IntIterable items)
boolean
IntHashBag. removeAll(IntIterable source)
boolean
IntHashBag. retainAll(IntIterable source)
IntHashBag
IntHashBag. withAll(IntIterable iterable)
MutableIntBag
MutableIntBagFactoryImpl. withAll(IntIterable items)
SynchronizedIntBag
SynchronizedIntBag. withAll(IntIterable elements)
UnmodifiableIntBag
UnmodifiableIntBag. withAll(IntIterable elements)
IntHashBag
IntHashBag. withoutAll(IntIterable iterable)
SynchronizedIntBag
SynchronizedIntBag. withoutAll(IntIterable elements)
UnmodifiableIntBag
UnmodifiableIntBag. withoutAll(IntIterable elements)
Constructors in org.eclipse.collections.impl.bag.mutable.primitive with parameters of type IntIterable Constructor Description IntHashBag(IntIterable iterable)
-
Uses of IntIterable in org.eclipse.collections.impl.bimap
Method parameters in org.eclipse.collections.impl.bimap with type arguments of type IntIterable Modifier and Type Method Description <R extends MutableIntCollection>
RAbstractBiMap. flatCollectInt(Function<? super V,? extends IntIterable> function, R target)
-
Uses of IntIterable in org.eclipse.collections.impl.bimap.mutable
Methods in org.eclipse.collections.impl.bimap.mutable that return IntIterable Modifier and Type Method Description IntIterable
UnmodifiableBiMap. collectInt(IntFunction<? super V> intFunction)
Method parameters in org.eclipse.collections.impl.bimap.mutable with type arguments of type IntIterable Modifier and Type Method Description <R extends MutableIntCollection>
RUnmodifiableBiMap. flatCollectInt(Function<? super V,? extends IntIterable> function, R target)
-
Uses of IntIterable in org.eclipse.collections.impl.collection
Methods in org.eclipse.collections.impl.collection that return IntIterable Modifier and Type Method Description IntIterable
AbstractSynchronizedRichIterable. collectInt(IntFunction<? super T> intFunction)
Method parameters in org.eclipse.collections.impl.collection with type arguments of type IntIterable Modifier and Type Method Description <R extends MutableIntCollection>
RAbstractSynchronizedRichIterable. flatCollectInt(Function<? super T,? extends IntIterable> function, R target)
-
Uses of IntIterable in org.eclipse.collections.impl.collection.mutable
Method parameters in org.eclipse.collections.impl.collection.mutable with type arguments of type IntIterable Modifier and Type Method Description <R extends MutableIntCollection>
RAbstractMultiReaderMutableCollection. flatCollectInt(Function<? super T,? extends IntIterable> function, R target)
<R extends MutableIntCollection>
RAbstractUnmodifiableMutableCollection. flatCollectInt(Function<? super T,? extends IntIterable> function, R target)
-
Uses of IntIterable in org.eclipse.collections.impl.collection.mutable.primitive
Classes in org.eclipse.collections.impl.collection.mutable.primitive that implement IntIterable Modifier and Type Class Description class
AbstractSynchronizedIntCollection
This file was automatically generated from template file abstractSynchronizedPrimitiveCollection.stg.class
AbstractUnmodifiableIntCollection
This file was automatically generated from template file abstractUnmodifiablePrimitiveCollection.stg.class
SynchronizedIntCollection
This file was automatically generated from template file synchronizedPrimitiveCollection.stg.class
UnmodifiableIntCollection
This file was automatically generated from template file unmodifiablePrimitiveCollection.stg.Methods in org.eclipse.collections.impl.collection.mutable.primitive that return types with arguments of type IntIterable Modifier and Type Method Description RichIterable<IntIterable>
AbstractSynchronizedIntCollection. chunk(int size)
RichIterable<IntIterable>
AbstractUnmodifiableIntCollection. chunk(int size)
Methods in org.eclipse.collections.impl.collection.mutable.primitive with parameters of type IntIterable Modifier and Type Method Description boolean
AbstractSynchronizedIntCollection. addAll(IntIterable source)
boolean
AbstractUnmodifiableIntCollection. addAll(IntIterable source)
boolean
AbstractSynchronizedIntCollection. containsAll(IntIterable source)
boolean
AbstractUnmodifiableIntCollection. containsAll(IntIterable source)
boolean
AbstractSynchronizedIntCollection. removeAll(IntIterable source)
boolean
AbstractUnmodifiableIntCollection. removeAll(IntIterable source)
boolean
AbstractSynchronizedIntCollection. retainAll(IntIterable source)
boolean
AbstractUnmodifiableIntCollection. retainAll(IntIterable source)
MutableIntCollection
AbstractSynchronizedIntCollection. withAll(IntIterable elements)
MutableIntCollection
AbstractUnmodifiableIntCollection. withAll(IntIterable elements)
MutableIntCollection
AbstractSynchronizedIntCollection. withoutAll(IntIterable elements)
MutableIntCollection
AbstractUnmodifiableIntCollection. withoutAll(IntIterable elements)
-
Uses of IntIterable in org.eclipse.collections.impl.lazy.primitive
Classes in org.eclipse.collections.impl.lazy.primitive that implement IntIterable Modifier and Type Class Description class
AbstractLazyIntIterable
This file was automatically generated from template file abstractLazyPrimitiveIterable.stg.class
CollectBooleanToIntIterable
This file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.class
CollectByteToIntIterable
This file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.class
CollectCharToIntIterable
This file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.class
CollectDoubleToIntIterable
This file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.class
CollectFloatToIntIterable
This file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.class
CollectIntIterable<T>
This file was automatically generated from template file collectPrimitiveIterable.stg.class
CollectIntToIntIterable
This file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.class
CollectLongToIntIterable
This file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.class
CollectShortToIntIterable
This file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.class
LazyIntIterableAdapter
This file was automatically generated from template file lazyPrimitiveIterableAdapter.stg.class
ReverseIntIterable
This file was automatically generated from template file reversePrimitiveIterable.stg.class
SelectIntIterable
This file was automatically generated from template file selectPrimitiveIterable.stg.class
TapIntIterable
This file was automatically generated from template file tapPrimitiveIterable.stg.Methods in org.eclipse.collections.impl.lazy.primitive that return IntIterable Modifier and Type Method Description IntIterable
ChunkIntIterable.ChunkIntIterator. next()
Methods in org.eclipse.collections.impl.lazy.primitive that return types with arguments of type IntIterable Modifier and Type Method Description RichIterable<IntIterable>
AbstractLazyIntIterable. chunk(int size)
Iterator<IntIterable>
ChunkIntIterable. iterator()
Methods in org.eclipse.collections.impl.lazy.primitive with parameters of type IntIterable Modifier and Type Method Description boolean
AbstractLazyIntIterable. containsAll(IntIterable source)
boolean
CollectIntIterable. containsAll(IntIterable source)
boolean
LazyIntIterableAdapter. containsAll(IntIterable source)
boolean
ReverseIntIterable. containsAll(IntIterable source)
boolean
SelectIntIterable. containsAll(IntIterable source)
Method parameters in org.eclipse.collections.impl.lazy.primitive with type arguments of type IntIterable Modifier and Type Method Description void
ChunkIntIterable. each(Procedure<? super IntIterable> procedure)
-
Uses of IntIterable in org.eclipse.collections.impl.list.immutable.primitive
Methods in org.eclipse.collections.impl.list.immutable.primitive with parameters of type IntIterable Modifier and Type Method Description ImmutableIntList
ImmutableIntListFactoryImpl. ofAll(IntIterable items)
ImmutableIntList
ImmutableIntListFactoryImpl. withAll(IntIterable items)
-
Uses of IntIterable in org.eclipse.collections.impl.list.mutable
Method parameters in org.eclipse.collections.impl.list.mutable with type arguments of type IntIterable Modifier and Type Method Description <R extends MutableIntCollection>
RFastList. flatCollectInt(Function<? super T,? extends IntIterable> function, R target)
-
Uses of IntIterable in org.eclipse.collections.impl.list.mutable.primitive
Classes in org.eclipse.collections.impl.list.mutable.primitive that implement IntIterable Modifier and Type Class Description class
IntArrayList
IntArrayList is similar toFastList
, and is memory-optimized for int primitives.class
SynchronizedIntList
A synchronized view of aMutableIntList
.class
UnmodifiableIntList
This file was automatically generated from template file unmodifiablePrimitiveList.stg.Methods in org.eclipse.collections.impl.list.mutable.primitive that return types with arguments of type IntIterable Modifier and Type Method Description RichIterable<IntIterable>
IntArrayList. chunk(int size)
Methods in org.eclipse.collections.impl.list.mutable.primitive with parameters of type IntIterable Modifier and Type Method Description boolean
IntArrayList. addAll(IntIterable source)
boolean
IntArrayList. addAllAtIndex(int index, IntIterable source)
boolean
SynchronizedIntList. addAllAtIndex(int index, IntIterable source)
boolean
UnmodifiableIntList. addAllAtIndex(int index, IntIterable source)
static IntArrayList
IntArrayList. newList(IntIterable source)
MutableIntList
MutableIntListFactoryImpl. ofAll(IntIterable items)
boolean
IntArrayList. removeAll(IntIterable source)
boolean
IntArrayList. retainAll(IntIterable source)
IntArrayList
IntArrayList. withAll(IntIterable elements)
MutableIntList
MutableIntListFactoryImpl. withAll(IntIterable items)
SynchronizedIntList
SynchronizedIntList. withAll(IntIterable elements)
UnmodifiableIntList
UnmodifiableIntList. withAll(IntIterable elements)
IntArrayList
IntArrayList. withoutAll(IntIterable elements)
SynchronizedIntList
SynchronizedIntList. withoutAll(IntIterable elements)
UnmodifiableIntList
UnmodifiableIntList. withoutAll(IntIterable elements)
MutableList<IntIntPair>
IntArrayList. zipInt(IntIterable iterable)
MutableList<IntIntPair>
SynchronizedIntList. zipInt(IntIterable iterable)
MutableList<IntIntPair>
UnmodifiableIntList. zipInt(IntIterable iterable)
-
Uses of IntIterable in org.eclipse.collections.impl.list.primitive
Classes in org.eclipse.collections.impl.list.primitive that implement IntIterable Modifier and Type Class Description class
IntInterval
An IntInterval is a range of ints that may be iterated over using a step value.Methods in org.eclipse.collections.impl.list.primitive that return types with arguments of type IntIterable Modifier and Type Method Description RichIterable<IntIterable>
IntInterval. chunk(int size)
Methods in org.eclipse.collections.impl.list.primitive with parameters of type IntIterable Modifier and Type Method Description boolean
IntInterval. containsAll(IntIterable source)
ImmutableIntList
IntInterval. newWithAll(IntIterable elements)
ImmutableIntList
IntInterval. newWithoutAll(IntIterable elements)
ImmutableList<IntIntPair>
IntInterval. zipInt(IntIterable iterable)
-
Uses of IntIterable in org.eclipse.collections.impl.map.immutable.primitive
Classes in org.eclipse.collections.impl.map.immutable.primitive that implement IntIterable Modifier and Type Class Description class
AbstractImmutableObjectIntMap<V>
This file was automatically generated from template file abstractImmutableObjectPrimitiveMap.stg. -
Uses of IntIterable in org.eclipse.collections.impl.map.mutable
Method parameters in org.eclipse.collections.impl.map.mutable with type arguments of type IntIterable Modifier and Type Method Description <R extends MutableIntCollection>
RUnmodifiableMutableMap. flatCollectInt(Function<? super V,? extends IntIterable> function, R target)
-
Uses of IntIterable in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement IntIterable Modifier and Type Class Description class
AbstractMutableIntKeySet
This file was automatically generated from template file abstractMutablePrimitiveKeySet.stg.class
AbstractMutableIntValuesMap
This file was automatically generated from template file abstractMutablePrimitiveValuesMap.stg.class
ByteIntHashMap
This file was automatically generated from template file primitivePrimitiveHashMap.stg.class
CharIntHashMap
This file was automatically generated from template file primitivePrimitiveHashMap.stg.class
DoubleIntHashMap
This file was automatically generated from template file primitivePrimitiveHashMap.stg.class
FloatIntHashMap
This file was automatically generated from template file primitivePrimitiveHashMap.stg.class
IntIntHashMap
This file was automatically generated from template file primitivePrimitiveHashMap.stg.class
LongIntHashMap
This file was automatically generated from template file primitivePrimitiveHashMap.stg.class
ObjectIntHashMap<K>
This file was automatically generated from template file objectPrimitiveHashMap.stg.class
ObjectIntHashMapWithHashingStrategy<K>
This file was automatically generated from template file objectPrimitiveHashMapWithHashingStrategy.stg.class
ShortIntHashMap
This file was automatically generated from template file primitivePrimitiveHashMap.stg.class
SynchronizedByteIntMap
A synchronized view of aMutableByteIntMap
.class
SynchronizedCharIntMap
A synchronized view of aMutableCharIntMap
.class
SynchronizedDoubleIntMap
A synchronized view of aMutableDoubleIntMap
.class
SynchronizedFloatIntMap
A synchronized view of aMutableFloatIntMap
.class
SynchronizedIntIntMap
A synchronized view of aMutableIntIntMap
.class
SynchronizedLongIntMap
A synchronized view of aMutableLongIntMap
.class
SynchronizedObjectIntMap<K>
A synchronized view of aMutableObjectIntMap
.class
SynchronizedShortIntMap
A synchronized view of aMutableShortIntMap
.class
UnmodifiableByteIntMap
This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.class
UnmodifiableCharIntMap
This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.class
UnmodifiableDoubleIntMap
This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.class
UnmodifiableFloatIntMap
This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.class
UnmodifiableIntIntMap
This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.class
UnmodifiableLongIntMap
This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.class
UnmodifiableObjectIntMap<K>
This file was automatically generated from template file unmodifiableObjectPrimitiveMap.stg.class
UnmodifiableShortIntMap
This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.Methods in org.eclipse.collections.impl.map.mutable.primitive that return types with arguments of type IntIterable Modifier and Type Method Description RichIterable<IntIterable>
AbstractMutableIntKeySet. chunk(int size)
RichIterable<IntIterable>
AbstractMutableIntValuesMap. chunk(int size)
RichIterable<IntIterable>
ObjectIntHashMap. chunk(int size)
RichIterable<IntIterable>
ObjectIntHashMapWithHashingStrategy. chunk(int size)
RichIterable<IntIterable>
SynchronizedByteIntMap. chunk(int size)
RichIterable<IntIterable>
SynchronizedCharIntMap. chunk(int size)
RichIterable<IntIterable>
SynchronizedDoubleIntMap. chunk(int size)
RichIterable<IntIterable>
SynchronizedFloatIntMap. chunk(int size)
RichIterable<IntIterable>
SynchronizedIntIntMap. chunk(int size)
RichIterable<IntIterable>
SynchronizedLongIntMap. chunk(int size)
RichIterable<IntIterable>
SynchronizedObjectIntMap. chunk(int size)
RichIterable<IntIterable>
SynchronizedShortIntMap. chunk(int size)
RichIterable<IntIterable>
UnmodifiableByteIntMap. chunk(int size)
RichIterable<IntIterable>
UnmodifiableCharIntMap. chunk(int size)
RichIterable<IntIterable>
UnmodifiableDoubleIntMap. chunk(int size)
RichIterable<IntIterable>
UnmodifiableFloatIntMap. chunk(int size)
RichIterable<IntIterable>
UnmodifiableIntIntMap. chunk(int size)
RichIterable<IntIterable>
UnmodifiableLongIntMap. chunk(int size)
RichIterable<IntIterable>
UnmodifiableObjectIntMap. chunk(int size)
RichIterable<IntIterable>
UnmodifiableShortIntMap. chunk(int size)
Methods in org.eclipse.collections.impl.map.mutable.primitive with parameters of type IntIterable Modifier and Type Method Description boolean
AbstractMutableIntKeySet. addAll(IntIterable source)
boolean
AbstractMutableIntKeySet. containsAll(IntIterable source)
boolean
AbstractMutableIntValuesMap. containsAll(IntIterable source)
boolean
ObjectIntHashMap. containsAll(IntIterable source)
boolean
ObjectIntHashMapWithHashingStrategy. containsAll(IntIterable source)
boolean
SynchronizedByteIntMap. containsAll(IntIterable source)
boolean
SynchronizedCharIntMap. containsAll(IntIterable source)
boolean
SynchronizedDoubleIntMap. containsAll(IntIterable source)
boolean
SynchronizedFloatIntMap. containsAll(IntIterable source)
boolean
SynchronizedIntIntMap. containsAll(IntIterable source)
boolean
SynchronizedLongIntMap. containsAll(IntIterable source)
boolean
SynchronizedObjectIntMap. containsAll(IntIterable source)
boolean
SynchronizedShortIntMap. containsAll(IntIterable source)
boolean
UnmodifiableByteIntMap. containsAll(IntIterable source)
boolean
UnmodifiableCharIntMap. containsAll(IntIterable source)
boolean
UnmodifiableDoubleIntMap. containsAll(IntIterable source)
boolean
UnmodifiableFloatIntMap. containsAll(IntIterable source)
boolean
UnmodifiableIntIntMap. containsAll(IntIterable source)
boolean
UnmodifiableLongIntMap. containsAll(IntIterable source)
boolean
UnmodifiableObjectIntMap. containsAll(IntIterable source)
boolean
UnmodifiableShortIntMap. containsAll(IntIterable source)
boolean
AbstractMutableIntKeySet. removeAll(IntIterable source)
MutableIntSet
AbstractMutableIntKeySet. withAll(IntIterable elements)
MutableIntSet
AbstractMutableIntKeySet. withoutAll(IntIterable elements)
IntBooleanHashMap
IntBooleanHashMap. withoutAllKeys(IntIterable keys)
IntByteHashMap
IntByteHashMap. withoutAllKeys(IntIterable keys)
IntCharHashMap
IntCharHashMap. withoutAllKeys(IntIterable keys)
IntDoubleHashMap
IntDoubleHashMap. withoutAllKeys(IntIterable keys)
IntFloatHashMap
IntFloatHashMap. withoutAllKeys(IntIterable keys)
IntIntHashMap
IntIntHashMap. withoutAllKeys(IntIterable keys)
IntLongHashMap
IntLongHashMap. withoutAllKeys(IntIterable keys)
MutableIntObjectMap<V>
IntObjectHashMap. withoutAllKeys(IntIterable keys)
IntShortHashMap
IntShortHashMap. withoutAllKeys(IntIterable keys)
MutableIntBooleanMap
SynchronizedIntBooleanMap. withoutAllKeys(IntIterable keys)
MutableIntByteMap
SynchronizedIntByteMap. withoutAllKeys(IntIterable keys)
MutableIntCharMap
SynchronizedIntCharMap. withoutAllKeys(IntIterable keys)
MutableIntDoubleMap
SynchronizedIntDoubleMap. withoutAllKeys(IntIterable keys)
MutableIntFloatMap
SynchronizedIntFloatMap. withoutAllKeys(IntIterable keys)
MutableIntIntMap
SynchronizedIntIntMap. withoutAllKeys(IntIterable keys)
MutableIntLongMap
SynchronizedIntLongMap. withoutAllKeys(IntIterable keys)
MutableIntObjectMap<V>
SynchronizedIntObjectMap. withoutAllKeys(IntIterable keys)
MutableIntShortMap
SynchronizedIntShortMap. withoutAllKeys(IntIterable keys)
MutableIntBooleanMap
UnmodifiableIntBooleanMap. withoutAllKeys(IntIterable keys)
MutableIntByteMap
UnmodifiableIntByteMap. withoutAllKeys(IntIterable keys)
MutableIntCharMap
UnmodifiableIntCharMap. withoutAllKeys(IntIterable keys)
MutableIntDoubleMap
UnmodifiableIntDoubleMap. withoutAllKeys(IntIterable keys)
MutableIntFloatMap
UnmodifiableIntFloatMap. withoutAllKeys(IntIterable keys)
MutableIntIntMap
UnmodifiableIntIntMap. withoutAllKeys(IntIterable keys)
MutableIntLongMap
UnmodifiableIntLongMap. withoutAllKeys(IntIterable keys)
MutableIntObjectMap<V>
UnmodifiableIntObjectMap. withoutAllKeys(IntIterable keys)
MutableIntShortMap
UnmodifiableIntShortMap. withoutAllKeys(IntIterable keys)
Method parameters in org.eclipse.collections.impl.map.mutable.primitive with type arguments of type IntIterable Modifier and Type Method Description <R extends MutableIntCollection>
RSynchronizedByteObjectMap. flatCollectInt(Function<? super V,? extends IntIterable> function, R target)
<R extends MutableIntCollection>
RSynchronizedCharObjectMap. flatCollectInt(Function<? super V,? extends IntIterable> function, R target)
<R extends MutableIntCollection>
RSynchronizedDoubleObjectMap. flatCollectInt(Function<? super V,? extends IntIterable> function, R target)
<R extends MutableIntCollection>
RSynchronizedFloatObjectMap. flatCollectInt(Function<? super V,? extends IntIterable> function, R target)
<R extends MutableIntCollection>
RSynchronizedIntObjectMap. flatCollectInt(Function<? super V,? extends IntIterable> function, R target)
<R extends MutableIntCollection>
RSynchronizedLongObjectMap. flatCollectInt(Function<? super V,? extends IntIterable> function, R target)
<R extends MutableIntCollection>
RSynchronizedShortObjectMap. flatCollectInt(Function<? super V,? extends IntIterable> function, R target)
-
Uses of IntIterable in org.eclipse.collections.impl.map.ordered.mutable
Method parameters in org.eclipse.collections.impl.map.ordered.mutable with type arguments of type IntIterable Modifier and Type Method Description <R extends MutableIntCollection>
RUnmodifiableMutableOrderedMap. flatCollectInt(Function<? super V,? extends IntIterable> function, R target)
-
Uses of IntIterable in org.eclipse.collections.impl.map.sorted.mutable
Method parameters in org.eclipse.collections.impl.map.sorted.mutable with type arguments of type IntIterable Modifier and Type Method Description <R extends MutableIntCollection>
RUnmodifiableTreeMap. flatCollectInt(Function<? super V,? extends IntIterable> function, R target)
-
Uses of IntIterable in org.eclipse.collections.impl.primitive
Classes in org.eclipse.collections.impl.primitive that implement IntIterable Modifier and Type Class Description class
AbstractIntIterable
This file was automatically generated from template file abstractPrimitiveIterable.stg.class
SynchronizedIntIterable
A synchronized view of a IntIterable.Methods in org.eclipse.collections.impl.primitive that return IntIterable Modifier and Type Method Description IntIterable
SynchronizedIntIterable. reject(IntPredicate predicate)
IntIterable
SynchronizedIntIterable. select(IntPredicate predicate)
Methods in org.eclipse.collections.impl.primitive that return types with arguments of type IntIterable Modifier and Type Method Description RichIterable<IntIterable>
SynchronizedIntIterable. chunk(int size)
Methods in org.eclipse.collections.impl.primitive with parameters of type IntIterable Modifier and Type Method Description boolean
AbstractIntIterable. containsAll(IntIterable source)
boolean
SynchronizedIntIterable. containsAll(IntIterable source)
static SynchronizedIntIterable
SynchronizedIntIterable. of(IntIterable iterable)
This method will take a IntIterable and wrap it directly in a SynchronizedIntIterable.static SynchronizedIntIterable
SynchronizedIntIterable. of(IntIterable iterable, Object lock)
This method will take a IntIterable and wrap it directly in a SynchronizedIntIterable. -
Uses of IntIterable in org.eclipse.collections.impl.set.immutable.primitive
Classes in org.eclipse.collections.impl.set.immutable.primitive that implement IntIterable Modifier and Type Class Description class
AbstractImmutableIntSet
This file was automatically generated from template file abstractImmutablePrimitiveSet.stg.Methods in org.eclipse.collections.impl.set.immutable.primitive that return types with arguments of type IntIterable Modifier and Type Method Description RichIterable<IntIterable>
AbstractImmutableIntSet. chunk(int size)
Methods in org.eclipse.collections.impl.set.immutable.primitive with parameters of type IntIterable Modifier and Type Method Description ImmutableIntSet
AbstractImmutableIntSet. newWithAll(IntIterable elements)
ImmutableIntSet
AbstractImmutableIntSet. newWithoutAll(IntIterable elements)
ImmutableIntSet
ImmutableIntSetFactoryImpl. ofAll(IntIterable items)
ImmutableIntSet
ImmutableIntSetFactoryImpl. withAll(IntIterable items)
-
Uses of IntIterable in org.eclipse.collections.impl.set.mutable.primitive
Classes in org.eclipse.collections.impl.set.mutable.primitive that implement IntIterable Modifier and Type Class Description class
IntHashSet
This file was automatically generated from template file primitiveHashSet.stg.class
SynchronizedIntSet
A synchronized view of aMutableIntSet
.class
UnmodifiableIntSet
This file was automatically generated from template file unmodifiablePrimitiveSet.stg.Methods in org.eclipse.collections.impl.set.mutable.primitive that return types with arguments of type IntIterable Modifier and Type Method Description RichIterable<IntIterable>
IntHashSet. chunk(int size)
Methods in org.eclipse.collections.impl.set.mutable.primitive with parameters of type IntIterable Modifier and Type Method Description boolean
IntHashSet. addAll(IntIterable source)
static IntHashSet
IntHashSet. newSet(IntIterable source)
MutableIntSet
MutableIntSetFactoryImpl. ofAll(IntIterable items)
boolean
IntHashSet. removeAll(IntIterable source)
boolean
IntHashSet. retainAll(IntIterable source)
IntHashSet
IntHashSet. withAll(IntIterable elements)
MutableIntSet
MutableIntSetFactoryImpl. withAll(IntIterable items)
SynchronizedIntSet
SynchronizedIntSet. withAll(IntIterable elements)
UnmodifiableIntSet
UnmodifiableIntSet. withAll(IntIterable elements)
IntHashSet
IntHashSet. withoutAll(IntIterable elements)
SynchronizedIntSet
SynchronizedIntSet. withoutAll(IntIterable elements)
UnmodifiableIntSet
UnmodifiableIntSet. withoutAll(IntIterable elements)
-
Uses of IntIterable in org.eclipse.collections.impl.set.primitive
Classes in org.eclipse.collections.impl.set.primitive that implement IntIterable Modifier and Type Class Description class
AbstractIntSet
This file was automatically generated from template file abstractPrimitiveSet.stg. -
Uses of IntIterable in org.eclipse.collections.impl.stack.immutable.primitive
Methods in org.eclipse.collections.impl.stack.immutable.primitive with parameters of type IntIterable Modifier and Type Method Description ImmutableIntStack
ImmutableIntStackFactoryImpl. ofAll(IntIterable items)
ImmutableIntStack
ImmutableIntStackFactoryImpl. ofAllReversed(IntIterable items)
ImmutableIntStack
ImmutableIntStackFactoryImpl. withAll(IntIterable items)
ImmutableIntStack
ImmutableIntStackFactoryImpl. withAllReversed(IntIterable items)
-
Uses of IntIterable in org.eclipse.collections.impl.stack.mutable
Method parameters in org.eclipse.collections.impl.stack.mutable with type arguments of type IntIterable Modifier and Type Method Description <R extends MutableIntCollection>
RArrayStack. flatCollectInt(Function<? super T,? extends IntIterable> function, R target)
<R extends MutableIntCollection>
RSynchronizedStack. flatCollectInt(Function<? super T,? extends IntIterable> function, R target)
<R extends MutableIntCollection>
RUnmodifiableStack. flatCollectInt(Function<? super T,? extends IntIterable> function, R target)
-
Uses of IntIterable in org.eclipse.collections.impl.stack.mutable.primitive
Classes in org.eclipse.collections.impl.stack.mutable.primitive that implement IntIterable Modifier and Type Class Description class
IntArrayStack
IntArrayStack is similar toArrayStack
, and is memory-optimized for int primitives.class
SynchronizedIntStack
A synchronized view of aMutableIntStack
.class
UnmodifiableIntStack
This file was automatically generated from template file unmodifiablePrimitiveStack.stg.Methods in org.eclipse.collections.impl.stack.mutable.primitive that return types with arguments of type IntIterable Modifier and Type Method Description RichIterable<IntIterable>
SynchronizedIntStack. chunk(int size)
RichIterable<IntIterable>
UnmodifiableIntStack. chunk(int size)
Methods in org.eclipse.collections.impl.stack.mutable.primitive with parameters of type IntIterable Modifier and Type Method Description boolean
SynchronizedIntStack. containsAll(IntIterable source)
boolean
UnmodifiableIntStack. containsAll(IntIterable source)
static IntArrayStack
IntArrayStack. newStack(IntIterable items)
static IntArrayStack
IntArrayStack. newStackFromTopToBottom(IntIterable items)
MutableIntStack
MutableIntStackFactoryImpl. ofAll(IntIterable items)
MutableIntStack
MutableIntStackFactoryImpl. ofAllReversed(IntIterable items)
MutableIntStack
MutableIntStackFactoryImpl. withAll(IntIterable items)
MutableIntStack
MutableIntStackFactoryImpl. withAllReversed(IntIterable items)
-
Uses of IntIterable in org.eclipse.collections.impl.stack.primitive
Classes in org.eclipse.collections.impl.stack.primitive that implement IntIterable Modifier and Type Class Description class
AbstractIntStack
This file was automatically generated from template file abstractPrimitiveStack.stg.Methods in org.eclipse.collections.impl.stack.primitive that return types with arguments of type IntIterable Modifier and Type Method Description RichIterable<IntIterable>
AbstractIntStack. chunk(int size)
Methods in org.eclipse.collections.impl.stack.primitive with parameters of type IntIterable Modifier and Type Method Description boolean
AbstractIntStack. containsAll(IntIterable source)
-
Uses of IntIterable in org.eclipse.collections.impl.string.immutable
Classes in org.eclipse.collections.impl.string.immutable that implement IntIterable Modifier and Type Class Description class
CodePointAdapter
Calculates and provides the code points stored in a String as an ImmutableIntList.class
CodePointList
Calculates and provides the code points stored in a String as an ImmutableIntList.Methods in org.eclipse.collections.impl.string.immutable that return types with arguments of type IntIterable Modifier and Type Method Description RichIterable<IntIterable>
CodePointAdapter. chunk(int size)
RichIterable<IntIterable>
CodePointList. chunk(int size)
Methods in org.eclipse.collections.impl.string.immutable with parameters of type IntIterable Modifier and Type Method Description static CodePointAdapter
CodePointAdapter. from(IntIterable iterable)
static CodePointList
CodePointList. from(IntIterable iterable)
CodePointAdapter
CodePointAdapter. newWithAll(IntIterable elements)
CodePointList
CodePointList. newWithAll(IntIterable elements)
CodePointAdapter
CodePointAdapter. newWithoutAll(IntIterable elements)
CodePointList
CodePointList. newWithoutAll(IntIterable elements)
ImmutableList<IntIntPair>
CodePointAdapter. zipInt(IntIterable iterable)
ImmutableList<IntIntPair>
CodePointList. zipInt(IntIterable iterable)
-
Uses of IntIterable in org.eclipse.collections.impl.utility.internal.primitive
Methods in org.eclipse.collections.impl.utility.internal.primitive with parameters of type IntIterable Modifier and Type Method Description static boolean
IntIterableIterate. allSatisfy(IntIterable iterable, IntPredicate predicate)
static boolean
IntIterableIterate. anySatisfy(IntIterable iterable, IntPredicate predicate)
static void
IntIterableIterate. appendString(IntIterable iterable, Appendable appendable, String start, String separator, String end)
static <V, R extends Collection<V>>
RIntIterableIterate. collect(IntIterable iterable, IntToObjectFunction<? extends V> function, R targetCollection)
static int
IntIterableIterate. count(IntIterable iterable, IntPredicate predicate)
static int
IntIterableIterate. detectIfNone(IntIterable iterable, IntPredicate predicate, int ifNone)
static void
IntIterableIterate. forEach(IntIterable iterable, IntProcedure procedure)
static <T> T
IntIterableIterate. injectInto(IntIterable iterable, T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
static boolean
IntIterableIterate. isEmpty(IntIterable iterable)
static int
IntIterableIterate. max(IntIterable iterable)
static int
IntIterableIterate. maxIfEmpty(IntIterable iterable, int ifEmpty)
static int
IntIterableIterate. min(IntIterable iterable)
static int
IntIterableIterate. minIfEmpty(IntIterable iterable, int ifEmpty)
static boolean
IntIterableIterate. noneSatisfy(IntIterable iterable, IntPredicate predicate)
static boolean
IntIterableIterate. notEmpty(IntIterable iterable)
static <R extends MutableIntCollection>
RIntIterableIterate. reject(IntIterable iterable, IntPredicate predicate, R targetCollection)
static <R extends MutableIntCollection>
RIntIterableIterate. select(IntIterable iterable, IntPredicate predicate, R targetCollection)
static long
IntIterableIterate. sum(IntIterable iterable)
-
Uses of IntIterable in org.eclipse.collections.impl.utility.primitive
Methods in org.eclipse.collections.impl.utility.primitive with parameters of type IntIterable Modifier and Type Method Description static LazyIntIterable
LazyIntIterate. adapt(IntIterable iterable)
Creates a deferred int iterable for the specified int iterable.static <V> LazyIterable<V>
LazyIntIterate. collect(IntIterable iterable, IntToObjectFunction<? extends V> function)
Creates a deferred transforming int iterable for the specified int iterable.static <V> LazyIterable<V>
LazyIntIterate. collectIf(IntIterable iterable, IntPredicate predicate, IntToObjectFunction<? extends V> function)
Creates a deferred filtering and transforming int iterable for the specified int iterable.static <V> LazyIterable<V>
LazyIntIterate. flatCollect(IntIterable iterable, IntToObjectFunction<? extends Iterable<V>> function)
Creates a deferred transforming and flattening int iterable for the specified int iterable.static LazyIntIterable
LazyIntIterate. select(IntIterable iterable, IntPredicate predicate)
Creates a deferred filtering int iterable for the specified int iterable.static LazyIntIterable
LazyIntIterate. tap(IntIterable iterable, IntProcedure procedure)
Creates a deferred tap iterable for the specified iterable.