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.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 theMutableBiMap
interface.org.eclipse.collections.impl.collection org.eclipse.collections.impl.collection.mutable This package contains implementations of theMutableCollection
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 theMutableList
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 theMutableMap
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 theMutableSortedMap
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 This package contains implementations of theImmutableStack
interface.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 theMutableStack
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 default boolean
IntIterable. 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 boolean
IntIterable. 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 boolean
IntIterable. 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 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
Classes in org.eclipse.collections.impl.bag.immutable.primitive that implement IntIterable Modifier and Type Class Description (package private) class
ImmutableIntEmptyBag
ImmutableIntEmptyBag is an optimization forImmutableIntBag
of size 0.(package private) class
ImmutableIntHashBag
ImmutableIntHashBag is the non-modifiable equivalent ofIntHashBag
.(package private) class
ImmutableIntSingletonBag
ImmutableIntSingletonBag is an optimization forImmutableIntBag
of size 1.Methods in org.eclipse.collections.impl.bag.immutable.primitive that return types with arguments of type IntIterable Modifier and Type Method Description RichIterable<IntIterable>
ImmutableIntEmptyBag. chunk(int size)
RichIterable<IntIterable>
ImmutableIntHashBag. chunk(int size)
RichIterable<IntIterable>
ImmutableIntSingletonBag. chunk(int size)
Methods in org.eclipse.collections.impl.bag.immutable.primitive with parameters of type IntIterable Modifier and Type Method Description boolean
ImmutableIntEmptyBag. containsAll(IntIterable source)
boolean
ImmutableIntHashBag. containsAll(IntIterable source)
boolean
ImmutableIntSingletonBag. containsAll(IntIterable source)
ImmutableIntBag
ImmutableIntEmptyBag. newWithAll(IntIterable elements)
ImmutableIntBag
ImmutableIntHashBag. newWithAll(IntIterable elements)
ImmutableIntBag
ImmutableIntSingletonBag. newWithAll(IntIterable elements)
ImmutableIntBag
ImmutableIntEmptyBag. newWithoutAll(IntIterable elements)
ImmutableIntBag
ImmutableIntHashBag. newWithoutAll(IntIterable elements)
ImmutableIntBag
ImmutableIntSingletonBag. newWithoutAll(IntIterable elements)
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>
RAbstractMultiReaderMutableCollection.UntouchableMutableCollection. 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. containsAny(IntIterable source)
boolean
AbstractUnmodifiableIntCollection. containsAny(IntIterable source)
boolean
AbstractSynchronizedIntCollection. containsNone(IntIterable source)
boolean
AbstractUnmodifiableIntCollection. containsNone(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.Fields in org.eclipse.collections.impl.lazy.primitive declared as IntIterable Modifier and Type Field Description private IntIterable
ChunkIntIterable. adapted
private IntIterable
TapIntIterable. adapted
private IntIterable
LazyIntIterableAdapter. delegate
private IntIterable
SelectIntIterable. delegate
private IntIterable
CollectIntToBooleanIterable. iterable
private IntIterable
CollectIntToByteIterable. iterable
private IntIterable
CollectIntToCharIterable. iterable
private IntIterable
CollectIntToDoubleIterable. iterable
private IntIterable
CollectIntToFloatIterable. iterable
private IntIterable
CollectIntToIntIterable. iterable
private IntIterable
CollectIntToLongIterable. iterable
private IntIterable
CollectIntToObjectIterable. iterable
private IntIterable
CollectIntToShortIterable. iterable
private IntIterable
FlatCollectIntToObjectIterable. iterable
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)
java.util.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
Classes in org.eclipse.collections.impl.list.immutable.primitive that implement IntIterable Modifier and Type Class Description (package private) class
ImmutableIntArrayList
ImmutableIntArrayList is the non-modifiable equivalent ofIntArrayList
.(package private) class
ImmutableIntEmptyList
ImmutableIntEmptyList is an optimization forImmutableIntList
of size 0.(package private) class
ImmutableIntSingletonList
ImmutableIntSingletonList is an optimization forImmutableIntList
of size 1.Methods in org.eclipse.collections.impl.list.immutable.primitive that return types with arguments of type IntIterable Modifier and Type Method Description RichIterable<IntIterable>
ImmutableIntArrayList. chunk(int size)
RichIterable<IntIterable>
ImmutableIntEmptyList. chunk(int size)
RichIterable<IntIterable>
ImmutableIntSingletonList. chunk(int size)
Methods in org.eclipse.collections.impl.list.immutable.primitive with parameters of type IntIterable Modifier and Type Method Description boolean
ImmutableIntArrayList. containsAll(IntIterable source)
boolean
ImmutableIntEmptyList. containsAll(IntIterable source)
boolean
ImmutableIntSingletonList. containsAll(IntIterable source)
static ImmutableIntArrayList
ImmutableIntArrayList. newList(IntIterable iterable)
ImmutableIntList
ImmutableIntArrayList. newWithAll(IntIterable elements)
ImmutableIntList
ImmutableIntEmptyList. newWithAll(IntIterable elements)
ImmutableIntList
ImmutableIntSingletonList. newWithAll(IntIterable elements)
ImmutableIntList
ImmutableIntArrayList. newWithoutAll(IntIterable elements)
ImmutableIntList
ImmutableIntEmptyList. newWithoutAll(IntIterable elements)
ImmutableIntList
ImmutableIntSingletonList. newWithoutAll(IntIterable elements)
ImmutableIntList
ImmutableIntListFactoryImpl. ofAll(IntIterable items)
ImmutableIntList
ImmutableIntListFactoryImpl. withAll(IntIterable items)
ImmutableList<IntIntPair>
ImmutableIntArrayList. zipInt(IntIterable iterable)
ImmutableList<IntIntPair>
ImmutableIntEmptyList. zipInt(IntIterable iterable)
ImmutableList<IntIntPair>
ImmutableIntSingletonList. zipInt(IntIterable iterable)
-
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 to FastList, 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.(package private) class
ImmutableByteIntEmptyMap
ImmutableByteIntEmptyMap is an optimization forImmutableByteIntMap
of size 0.(package private) class
ImmutableByteIntHashMap
ImmutableByteIntHashMap is the non-modifiable equivalent ofByteIntHashMap
.(package private) class
ImmutableByteIntSingletonMap
ImmutableByteIntSingletonMap is an optimization forImmutableByteIntMap
of size 1.(package private) class
ImmutableCharIntEmptyMap
ImmutableCharIntEmptyMap is an optimization forImmutableCharIntMap
of size 0.(package private) class
ImmutableCharIntHashMap
ImmutableCharIntHashMap is the non-modifiable equivalent ofCharIntHashMap
.(package private) class
ImmutableCharIntSingletonMap
ImmutableCharIntSingletonMap is an optimization forImmutableCharIntMap
of size 1.(package private) class
ImmutableDoubleIntEmptyMap
ImmutableDoubleIntEmptyMap is an optimization forImmutableDoubleIntMap
of size 0.(package private) class
ImmutableDoubleIntHashMap
ImmutableDoubleIntHashMap is the non-modifiable equivalent ofDoubleIntHashMap
.(package private) class
ImmutableDoubleIntSingletonMap
ImmutableDoubleIntSingletonMap is an optimization forImmutableDoubleIntMap
of size 1.(package private) class
ImmutableFloatIntEmptyMap
ImmutableFloatIntEmptyMap is an optimization forImmutableFloatIntMap
of size 0.(package private) class
ImmutableFloatIntHashMap
ImmutableFloatIntHashMap is the non-modifiable equivalent ofFloatIntHashMap
.(package private) class
ImmutableFloatIntSingletonMap
ImmutableFloatIntSingletonMap is an optimization forImmutableFloatIntMap
of size 1.(package private) class
ImmutableIntIntEmptyMap
ImmutableIntIntEmptyMap is an optimization forImmutableIntIntMap
of size 0.(package private) class
ImmutableIntIntHashMap
ImmutableIntIntHashMap is the non-modifiable equivalent ofIntIntHashMap
.(package private) class
ImmutableIntIntSingletonMap
ImmutableIntIntSingletonMap is an optimization forImmutableIntIntMap
of size 1.(package private) class
ImmutableLongIntEmptyMap
ImmutableLongIntEmptyMap is an optimization forImmutableLongIntMap
of size 0.(package private) class
ImmutableLongIntHashMap
ImmutableLongIntHashMap is the non-modifiable equivalent ofLongIntHashMap
.(package private) class
ImmutableLongIntSingletonMap
ImmutableLongIntSingletonMap is an optimization forImmutableLongIntMap
of size 1.(package private) class
ImmutableObjectIntEmptyMap<K>
ImmutableObjectIntEmptyMap is an optimization forImmutableObjectIntMap
of size 0.(package private) class
ImmutableObjectIntHashMap<K>
ImmutableObjectIntHashMap is the non-modifiable equivalent ofObjectIntHashMap
.(package private) class
ImmutableObjectIntSingletonMap<K>
ImmutableObjectIntSingletonMap is an optimization forImmutableObjectIntMap
of size 1.(package private) class
ImmutableShortIntEmptyMap
ImmutableShortIntEmptyMap is an optimization forImmutableShortIntMap
of size 0.(package private) class
ImmutableShortIntHashMap
ImmutableShortIntHashMap is the non-modifiable equivalent ofShortIntHashMap
.(package private) class
ImmutableShortIntSingletonMap
ImmutableShortIntSingletonMap is an optimization forImmutableShortIntMap
of size 1.Methods in org.eclipse.collections.impl.map.immutable.primitive that return types with arguments of type IntIterable Modifier and Type Method Description RichIterable<IntIterable>
ImmutableByteIntEmptyMap. chunk(int size)
RichIterable<IntIterable>
ImmutableByteIntHashMap. chunk(int size)
RichIterable<IntIterable>
ImmutableByteIntSingletonMap. chunk(int size)
RichIterable<IntIterable>
ImmutableCharIntEmptyMap. chunk(int size)
RichIterable<IntIterable>
ImmutableCharIntHashMap. chunk(int size)
RichIterable<IntIterable>
ImmutableCharIntSingletonMap. chunk(int size)
RichIterable<IntIterable>
ImmutableDoubleIntEmptyMap. chunk(int size)
RichIterable<IntIterable>
ImmutableDoubleIntHashMap. chunk(int size)
RichIterable<IntIterable>
ImmutableDoubleIntSingletonMap. chunk(int size)
RichIterable<IntIterable>
ImmutableFloatIntEmptyMap. chunk(int size)
RichIterable<IntIterable>
ImmutableFloatIntHashMap. chunk(int size)
RichIterable<IntIterable>
ImmutableFloatIntSingletonMap. chunk(int size)
RichIterable<IntIterable>
ImmutableIntIntEmptyMap. chunk(int size)
RichIterable<IntIterable>
ImmutableIntIntHashMap. chunk(int size)
RichIterable<IntIterable>
ImmutableIntIntSingletonMap. chunk(int size)
RichIterable<IntIterable>
ImmutableLongIntEmptyMap. chunk(int size)
RichIterable<IntIterable>
ImmutableLongIntHashMap. chunk(int size)
RichIterable<IntIterable>
ImmutableLongIntSingletonMap. chunk(int size)
RichIterable<IntIterable>
ImmutableObjectIntEmptyMap. chunk(int size)
RichIterable<IntIterable>
ImmutableObjectIntHashMap. chunk(int size)
RichIterable<IntIterable>
ImmutableObjectIntSingletonMap. chunk(int size)
RichIterable<IntIterable>
ImmutableShortIntEmptyMap. chunk(int size)
RichIterable<IntIterable>
ImmutableShortIntHashMap. chunk(int size)
RichIterable<IntIterable>
ImmutableShortIntSingletonMap. chunk(int size)
Methods in org.eclipse.collections.impl.map.immutable.primitive with parameters of type IntIterable Modifier and Type Method Description boolean
ImmutableByteIntEmptyMap. containsAll(IntIterable source)
boolean
ImmutableByteIntHashMap. containsAll(IntIterable source)
boolean
ImmutableByteIntSingletonMap. containsAll(IntIterable source)
boolean
ImmutableCharIntEmptyMap. containsAll(IntIterable source)
boolean
ImmutableCharIntHashMap. containsAll(IntIterable source)
boolean
ImmutableCharIntSingletonMap. containsAll(IntIterable source)
boolean
ImmutableDoubleIntEmptyMap. containsAll(IntIterable source)
boolean
ImmutableDoubleIntHashMap. containsAll(IntIterable source)
boolean
ImmutableDoubleIntSingletonMap. containsAll(IntIterable source)
boolean
ImmutableFloatIntEmptyMap. containsAll(IntIterable source)
boolean
ImmutableFloatIntHashMap. containsAll(IntIterable source)
boolean
ImmutableFloatIntSingletonMap. containsAll(IntIterable source)
boolean
ImmutableIntIntEmptyMap. containsAll(IntIterable source)
boolean
ImmutableIntIntHashMap. containsAll(IntIterable source)
boolean
ImmutableIntIntSingletonMap. containsAll(IntIterable source)
boolean
ImmutableLongIntEmptyMap. containsAll(IntIterable source)
boolean
ImmutableLongIntHashMap. containsAll(IntIterable source)
boolean
ImmutableLongIntSingletonMap. containsAll(IntIterable source)
boolean
ImmutableObjectIntEmptyMap. containsAll(IntIterable source)
boolean
ImmutableObjectIntHashMap. containsAll(IntIterable source)
boolean
ImmutableObjectIntSingletonMap. containsAll(IntIterable source)
boolean
ImmutableShortIntEmptyMap. containsAll(IntIterable source)
boolean
ImmutableShortIntHashMap. containsAll(IntIterable source)
boolean
ImmutableShortIntSingletonMap. containsAll(IntIterable source)
ImmutableIntBooleanMap
ImmutableIntBooleanEmptyMap. newWithoutAllKeys(IntIterable keys)
ImmutableIntBooleanMap
ImmutableIntBooleanHashMap. newWithoutAllKeys(IntIterable keys)
ImmutableIntBooleanMap
ImmutableIntBooleanSingletonMap. newWithoutAllKeys(IntIterable keys)
ImmutableIntByteMap
ImmutableIntByteEmptyMap. newWithoutAllKeys(IntIterable keys)
ImmutableIntByteMap
ImmutableIntByteHashMap. newWithoutAllKeys(IntIterable keys)
ImmutableIntByteMap
ImmutableIntByteSingletonMap. newWithoutAllKeys(IntIterable keys)
ImmutableIntCharMap
ImmutableIntCharEmptyMap. newWithoutAllKeys(IntIterable keys)
ImmutableIntCharMap
ImmutableIntCharHashMap. newWithoutAllKeys(IntIterable keys)
ImmutableIntCharMap
ImmutableIntCharSingletonMap. newWithoutAllKeys(IntIterable keys)
ImmutableIntDoubleMap
ImmutableIntDoubleEmptyMap. newWithoutAllKeys(IntIterable keys)
ImmutableIntDoubleMap
ImmutableIntDoubleHashMap. newWithoutAllKeys(IntIterable keys)
ImmutableIntDoubleMap
ImmutableIntDoubleSingletonMap. newWithoutAllKeys(IntIterable keys)
ImmutableIntFloatMap
ImmutableIntFloatEmptyMap. newWithoutAllKeys(IntIterable keys)
ImmutableIntFloatMap
ImmutableIntFloatHashMap. newWithoutAllKeys(IntIterable keys)
ImmutableIntFloatMap
ImmutableIntFloatSingletonMap. newWithoutAllKeys(IntIterable keys)
ImmutableIntIntMap
ImmutableIntIntEmptyMap. newWithoutAllKeys(IntIterable keys)
ImmutableIntIntMap
ImmutableIntIntHashMap. newWithoutAllKeys(IntIterable keys)
ImmutableIntIntMap
ImmutableIntIntSingletonMap. newWithoutAllKeys(IntIterable keys)
ImmutableIntLongMap
ImmutableIntLongEmptyMap. newWithoutAllKeys(IntIterable keys)
ImmutableIntLongMap
ImmutableIntLongHashMap. newWithoutAllKeys(IntIterable keys)
ImmutableIntLongMap
ImmutableIntLongSingletonMap. newWithoutAllKeys(IntIterable keys)
ImmutableIntObjectMap<V>
ImmutableIntObjectEmptyMap. newWithoutAllKeys(IntIterable keys)
ImmutableIntObjectMap<V>
ImmutableIntObjectHashMap. newWithoutAllKeys(IntIterable keys)
ImmutableIntObjectMap<V>
ImmutableIntObjectSingletonMap. newWithoutAllKeys(IntIterable keys)
ImmutableIntShortMap
ImmutableIntShortEmptyMap. newWithoutAllKeys(IntIterable keys)
ImmutableIntShortMap
ImmutableIntShortHashMap. newWithoutAllKeys(IntIterable keys)
ImmutableIntShortMap
ImmutableIntShortSingletonMap. newWithoutAllKeys(IntIterable keys)
Method parameters in org.eclipse.collections.impl.map.immutable.primitive with type arguments of type IntIterable Modifier and Type Method Description <R extends MutableIntCollection>
RImmutableByteObjectEmptyMap. flatCollectInt(Function<? super V,? extends IntIterable> function, R target)
<R extends MutableIntCollection>
RImmutableCharObjectEmptyMap. flatCollectInt(Function<? super V,? extends IntIterable> function, R target)
<R extends MutableIntCollection>
RImmutableDoubleObjectEmptyMap. flatCollectInt(Function<? super V,? extends IntIterable> function, R target)
<R extends MutableIntCollection>
RImmutableFloatObjectEmptyMap. flatCollectInt(Function<? super V,? extends IntIterable> function, R target)
<R extends MutableIntCollection>
RImmutableIntObjectEmptyMap. flatCollectInt(Function<? super V,? extends IntIterable> function, R target)
<R extends MutableIntCollection>
RImmutableLongObjectEmptyMap. flatCollectInt(Function<? super V,? extends IntIterable> function, R target)
<R extends MutableIntCollection>
RImmutableShortObjectEmptyMap. flatCollectInt(Function<? super V,? extends IntIterable> function, R target)
-
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.protected class
AbstractMutableIntValuesMap.AbstractIntValuesCollection
class
ByteIntHashMap
This file was automatically generated from template file primitivePrimitiveHashMap.stg.private class
ByteIntHashMap.ValuesCollection
class
CharIntHashMap
This file was automatically generated from template file primitivePrimitiveHashMap.stg.private class
CharIntHashMap.ValuesCollection
class
DoubleIntHashMap
This file was automatically generated from template file primitivePrimitiveHashMap.stg.private class
DoubleIntHashMap.ValuesCollection
class
FloatIntHashMap
This file was automatically generated from template file primitivePrimitiveHashMap.stg.private class
FloatIntHashMap.ValuesCollection
(package private) class
ImmutableIntIntMapKeySet
This file was automatically generated from template file immutablePrimitivePrimitiveMapKeySet.stg(package private) class
ImmutableIntMapKeySet
This file was automatically generated from template file immutablePrimitiveMapKeySet.stgprivate class
IntBooleanHashMap.KeySet
private class
IntBooleanHashMap.KeysView
private class
IntByteHashMap.KeySet
private class
IntByteHashMap.KeysView
private class
IntCharHashMap.KeySet
private class
IntCharHashMap.KeysView
private class
IntDoubleHashMap.KeySet
private class
IntDoubleHashMap.KeysView
private class
IntFloatHashMap.KeySet
private class
IntFloatHashMap.KeysView
class
IntIntHashMap
This file was automatically generated from template file primitivePrimitiveHashMap.stg.private class
IntIntHashMap.KeySet
private class
IntIntHashMap.KeysView
private class
IntIntHashMap.ValuesCollection
private class
IntLongHashMap.KeySet
private class
IntLongHashMap.KeysView
private class
IntObjectHashMap.KeySet
private class
IntObjectHashMap.KeysView
private class
IntShortHashMap.KeySet
private class
IntShortHashMap.KeysView
class
LongIntHashMap
This file was automatically generated from template file primitivePrimitiveHashMap.stg.private class
LongIntHashMap.ValuesCollection
class
ObjectIntHashMap<K>
This file was automatically generated from template file objectPrimitiveHashMap.stg.private class
ObjectIntHashMap.ValuesCollection
class
ObjectIntHashMapWithHashingStrategy<K>
This file was automatically generated from template file objectPrimitiveHashMapWithHashingStrategy.stg.private class
ObjectIntHashMapWithHashingStrategy.ValuesCollection
class
ShortIntHashMap
This file was automatically generated from template file primitivePrimitiveHashMap.stg.private class
ShortIntHashMap.ValuesCollection
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.AbstractIntValuesCollection. chunk(int size)
RichIterable<IntIterable>
AbstractMutableIntValuesMap. chunk(int size)
RichIterable<IntIterable>
ObjectIntHashMap. chunk(int size)
RichIterable<IntIterable>
ObjectIntHashMap.ValuesCollection. chunk(int size)
RichIterable<IntIterable>
ObjectIntHashMapWithHashingStrategy. chunk(int size)
RichIterable<IntIterable>
ObjectIntHashMapWithHashingStrategy.ValuesCollection. 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
AbstractMutableIntValuesMap.AbstractIntValuesCollection. addAll(IntIterable source)
boolean
ObjectIntHashMap.ValuesCollection. addAll(IntIterable source)
boolean
ObjectIntHashMapWithHashingStrategy.ValuesCollection. addAll(IntIterable source)
boolean
AbstractMutableIntKeySet. containsAll(IntIterable source)
boolean
AbstractMutableIntValuesMap.AbstractIntValuesCollection. containsAll(IntIterable source)
boolean
AbstractMutableIntValuesMap. containsAll(IntIterable source)
boolean
IntBooleanHashMap.KeysView. containsAll(IntIterable source)
boolean
ObjectIntHashMap. containsAll(IntIterable source)
boolean
ObjectIntHashMap.ValuesCollection. containsAll(IntIterable source)
boolean
ObjectIntHashMapWithHashingStrategy. containsAll(IntIterable source)
boolean
ObjectIntHashMapWithHashingStrategy.ValuesCollection. 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)
boolean
AbstractMutableIntValuesMap.AbstractIntValuesCollection. removeAll(IntIterable source)
boolean
ObjectIntHashMap.ValuesCollection. removeAll(IntIterable source)
boolean
ObjectIntHashMapWithHashingStrategy.ValuesCollection. removeAll(IntIterable source)
boolean
ByteIntHashMap.ValuesCollection. retainAll(IntIterable source)
boolean
CharIntHashMap.ValuesCollection. retainAll(IntIterable source)
boolean
DoubleIntHashMap.ValuesCollection. retainAll(IntIterable source)
boolean
FloatIntHashMap.ValuesCollection. retainAll(IntIterable source)
boolean
IntBooleanHashMap.KeySet. retainAll(IntIterable source)
boolean
IntByteHashMap.KeySet. retainAll(IntIterable source)
boolean
IntCharHashMap.KeySet. retainAll(IntIterable source)
boolean
IntDoubleHashMap.KeySet. retainAll(IntIterable source)
boolean
IntFloatHashMap.KeySet. retainAll(IntIterable source)
boolean
IntIntHashMap.KeySet. retainAll(IntIterable source)
boolean
IntIntHashMap.ValuesCollection. retainAll(IntIterable source)
boolean
IntLongHashMap.KeySet. retainAll(IntIterable source)
boolean
IntObjectHashMap.KeySet. retainAll(IntIterable source)
boolean
IntShortHashMap.KeySet. retainAll(IntIterable source)
boolean
LongIntHashMap.ValuesCollection. retainAll(IntIterable source)
boolean
ObjectIntHashMap.ValuesCollection. retainAll(IntIterable source)
boolean
ObjectIntHashMapWithHashingStrategy.ValuesCollection. retainAll(IntIterable source)
boolean
ShortIntHashMap.ValuesCollection. retainAll(IntIterable source)
MutableIntSet
AbstractMutableIntKeySet. withAll(IntIterable elements)
MutableIntCollection
AbstractMutableIntValuesMap.AbstractIntValuesCollection. withAll(IntIterable elements)
MutableIntCollection
ObjectIntHashMap.ValuesCollection. withAll(IntIterable elements)
MutableIntCollection
ObjectIntHashMapWithHashingStrategy.ValuesCollection. withAll(IntIterable elements)
MutableIntSet
AbstractMutableIntKeySet. withoutAll(IntIterable elements)
MutableIntCollection
AbstractMutableIntValuesMap.AbstractIntValuesCollection. withoutAll(IntIterable elements)
MutableIntCollection
ObjectIntHashMap.ValuesCollection. withoutAll(IntIterable elements)
MutableIntCollection
ObjectIntHashMapWithHashingStrategy.ValuesCollection. 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.Fields in org.eclipse.collections.impl.primitive declared as IntIterable Modifier and Type Field Description private IntIterable
SynchronizedIntIterable. iterable
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
SynchronizedIntIterable. containsAll(IntIterable source)
boolean
SynchronizedIntIterable. containsAny(IntIterable source)
boolean
SynchronizedIntIterable. containsNone(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, java.lang.Object lock)
This method will take a IntIterable and wrap it directly in a SynchronizedIntIterable.Constructors in org.eclipse.collections.impl.primitive with parameters of type IntIterable Constructor Description SynchronizedIntIterable(IntIterable iterable)
SynchronizedIntIterable(IntIterable iterable, java.lang.Object newLock)
-
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.(package private) class
ImmutableIntEmptySet
ImmutableIntEmptySet is an optimization forImmutableIntSet
of size 0.(package private) class
ImmutableIntSingletonSet
ImmutableIntSingletonSet is an optimization forImmutableIntSet
of size 1.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)
RichIterable<IntIterable>
ImmutableIntEmptySet. chunk(int size)
RichIterable<IntIterable>
ImmutableIntSingletonSet. chunk(int size)
Methods in org.eclipse.collections.impl.set.immutable.primitive with parameters of type IntIterable Modifier and Type Method Description boolean
ImmutableIntEmptySet. containsAll(IntIterable source)
boolean
ImmutableIntSingletonSet. containsAll(IntIterable source)
ImmutableIntSet
AbstractImmutableIntSet. newWithAll(IntIterable elements)
ImmutableIntSet
ImmutableIntEmptySet. newWithAll(IntIterable elements)
ImmutableIntSet
ImmutableIntSingletonSet. newWithAll(IntIterable elements)
ImmutableIntSet
AbstractImmutableIntSet. newWithoutAll(IntIterable elements)
ImmutableIntSet
ImmutableIntEmptySet. newWithoutAll(IntIterable elements)
ImmutableIntSet
ImmutableIntSingletonSet. 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.private static class
IntHashSet.ImmutableIntHashSet
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)
Constructors in org.eclipse.collections.impl.set.mutable.primitive with parameters of type IntIterable Constructor Description IntHashSet(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
Method parameters in org.eclipse.collections.impl.stack.immutable with type arguments of type IntIterable Modifier and Type Method Description <R extends MutableIntCollection>
RImmutableArrayStack. flatCollectInt(Function<? super T,? extends IntIterable> function, R target)
Deprecated.<R extends MutableIntCollection>
RImmutableEmptyStack. flatCollectInt(Function<? super T,? extends IntIterable> function, R target)
-
Uses of IntIterable in org.eclipse.collections.impl.stack.immutable.primitive
Classes in org.eclipse.collections.impl.stack.immutable.primitive that implement IntIterable Modifier and Type Class Description (package private) class
ImmutableIntArrayStack
ImmutableIntArrayStack is the non-modifiable equivalent ofIntArrayStack
.(package private) class
ImmutableIntEmptyStack
ImmutableIntEmptyStack is an optimization forImmutableIntStack
of size 0.(package private) class
ImmutableIntSingletonStack
ImmutableIntSingletonStack is an optimization forImmutableIntStack
of size 1.Methods in org.eclipse.collections.impl.stack.immutable.primitive that return types with arguments of type IntIterable Modifier and Type Method Description RichIterable<IntIterable>
ImmutableIntEmptyStack. chunk(int size)
RichIterable<IntIterable>
ImmutableIntSingletonStack. chunk(int size)
Methods in org.eclipse.collections.impl.stack.immutable.primitive with parameters of type IntIterable Modifier and Type Method Description boolean
ImmutableIntEmptyStack. containsAll(IntIterable source)
boolean
ImmutableIntSingletonStack. containsAll(IntIterable source)
static ImmutableIntArrayStack
ImmutableIntArrayStack. newStack(IntIterable iterable)
static ImmutableIntArrayStack
ImmutableIntArrayStack. newStackFromTopToBottom(IntIterable items)
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, java.lang.Appendable appendable, java.lang.String start, java.lang.String separator, java.lang.String end)
static <V,R extends java.util.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)
private static <T> java.lang.String
IntIterableIterate. stringValueOfItem(IntIterable iterable, T item)
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 java.lang.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.
-