Uses of Interface
org.eclipse.collections.api.tuple.primitive.IntIntPair
-
Packages that use IntIntPair Package Description org.eclipse.collections.api.bag.primitive This package contains API for Primitive Bags with Mutable and Immutable variants.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.set.primitive This package contains API for mutable and immutable primitive sets.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.factory.primitive This package contains static utilities for creating immutable primitive collection factories.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.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.primitive This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.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.string.immutable org.eclipse.collections.impl.tuple.primitive -
-
Uses of IntIntPair in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive that return types with arguments of type IntIntPair Modifier and Type Method Description ImmutableList<IntIntPair>
ImmutableIntBag. bottomOccurrences(int count)
Returns thecount
least frequently occurring items.ListIterable<IntIntPair>
IntBag. bottomOccurrences(int count)
Returns thecount
least frequently occurring items.MutableList<IntIntPair>
MutableIntBag. bottomOccurrences(int count)
Returns thecount
least frequently occurring items.ImmutableList<IntIntPair>
ImmutableIntBag. topOccurrences(int count)
Returns thecount
most frequently occurring items.ListIterable<IntIntPair>
IntBag. topOccurrences(int count)
Returns thecount
most frequently occurring items.MutableList<IntIntPair>
MutableIntBag. topOccurrences(int count)
Returns thecount
most frequently occurring items. -
Uses of IntIntPair in org.eclipse.collections.api.list.primitive
Methods in org.eclipse.collections.api.list.primitive that return types with arguments of type IntIntPair Modifier and Type Method Description 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 IntIntPair in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return types with arguments of type IntIntPair Modifier and Type Method Description RichIterable<IntIntPair>
IntIntMap. keyValuesView()
Returns a view of the key/value pairs in this map.Methods in org.eclipse.collections.api.map.primitive with parameters of type IntIntPair Modifier and Type Method Description default void
MutableIntIntMap. putPair(IntIntPair keyValuePair)
This method allows MutableIntIntMap the ability to add an element in the form of IntIntPair.Method parameters in org.eclipse.collections.api.map.primitive with type arguments of type IntIntPair Modifier and Type Method Description default MutableIntIntMap
MutableIntIntMap. withAllKeyValues(java.lang.Iterable<IntIntPair> keyValuePairs)
Puts all of the key/value mappings from the specified pairs into this map. -
Uses of IntIntPair in org.eclipse.collections.api.set.primitive
Methods in org.eclipse.collections.api.set.primitive that return types with arguments of type IntIntPair Modifier and Type Method Description LazyIterable<IntIntPair>
IntSet. cartesianProduct(IntSet set)
Returns the set whose members are all possible ordered pairs (a, b) where a is a member ofthis
and b is a member ofset
. -
Uses of IntIntPair in org.eclipse.collections.impl.bag.immutable.primitive
Methods in org.eclipse.collections.impl.bag.immutable.primitive that return types with arguments of type IntIntPair Modifier and Type Method Description ImmutableList<IntIntPair>
ImmutableIntEmptyBag. bottomOccurrences(int count)
ImmutableList<IntIntPair>
ImmutableIntHashBag. bottomOccurrences(int count)
ImmutableList<IntIntPair>
ImmutableIntSingletonBag. bottomOccurrences(int count)
ImmutableList<IntIntPair>
ImmutableIntEmptyBag. topOccurrences(int count)
ImmutableList<IntIntPair>
ImmutableIntHashBag. topOccurrences(int count)
ImmutableList<IntIntPair>
ImmutableIntSingletonBag. topOccurrences(int count)
-
Uses of IntIntPair in org.eclipse.collections.impl.bag.mutable.primitive
Methods in org.eclipse.collections.impl.bag.mutable.primitive that return types with arguments of type IntIntPair Modifier and Type Method Description MutableList<IntIntPair>
IntHashBag. bottomOccurrences(int count)
MutableList<IntIntPair>
SynchronizedIntBag. bottomOccurrences(int count)
MutableList<IntIntPair>
UnmodifiableIntBag. bottomOccurrences(int count)
protected MutableList<IntIntPair>
IntHashBag. occurrencesSortingBy(int n, IntFunction<IntIntPair> function, MutableList<IntIntPair> returnWhenEmpty)
protected MutableList<IntIntPair>
IntHashBag. toListWithOccurrences()
MutableList<IntIntPair>
IntHashBag. topOccurrences(int count)
MutableList<IntIntPair>
SynchronizedIntBag. topOccurrences(int count)
MutableList<IntIntPair>
UnmodifiableIntBag. topOccurrences(int count)
Method parameters in org.eclipse.collections.impl.bag.mutable.primitive with type arguments of type IntIntPair Modifier and Type Method Description protected MutableList<IntIntPair>
IntHashBag. occurrencesSortingBy(int n, IntFunction<IntIntPair> function, MutableList<IntIntPair> returnWhenEmpty)
protected MutableList<IntIntPair>
IntHashBag. occurrencesSortingBy(int n, IntFunction<IntIntPair> function, MutableList<IntIntPair> returnWhenEmpty)
-
Uses of IntIntPair in org.eclipse.collections.impl.factory.primitive
Methods in org.eclipse.collections.impl.factory.primitive that return types with arguments of type IntIntPair Modifier and Type Method Description static <A,B>
LazyIterable<IntIntPair>IntSets. cartesianProduct(IntSet set1, IntSet set2)
-
Uses of IntIntPair in org.eclipse.collections.impl.list.immutable.primitive
Methods in org.eclipse.collections.impl.list.immutable.primitive that return types with arguments of type IntIntPair Modifier and Type Method Description ImmutableList<IntIntPair>
ImmutableIntArrayList. zipInt(IntIterable iterable)
ImmutableList<IntIntPair>
ImmutableIntEmptyList. zipInt(IntIterable iterable)
ImmutableList<IntIntPair>
ImmutableIntSingletonList. zipInt(IntIterable iterable)
-
Uses of IntIntPair in org.eclipse.collections.impl.list.mutable.primitive
Methods in org.eclipse.collections.impl.list.mutable.primitive that return types with arguments of type IntIntPair Modifier and Type Method Description MutableList<IntIntPair>
IntArrayList. zipInt(IntIterable iterable)
MutableList<IntIntPair>
SynchronizedIntList. zipInt(IntIterable iterable)
MutableList<IntIntPair>
UnmodifiableIntList. zipInt(IntIterable iterable)
-
Uses of IntIntPair in org.eclipse.collections.impl.list.primitive
Methods in org.eclipse.collections.impl.list.primitive that return types with arguments of type IntIntPair Modifier and Type Method Description ImmutableList<IntIntPair>
IntInterval. zipInt(IntIterable iterable)
-
Uses of IntIntPair in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive that return types with arguments of type IntIntPair Modifier and Type Method Description RichIterable<IntIntPair>
ImmutableIntIntEmptyMap. keyValuesView()
RichIterable<IntIntPair>
ImmutableIntIntHashMap. keyValuesView()
RichIterable<IntIntPair>
ImmutableIntIntSingletonMap. keyValuesView()
-
Uses of IntIntPair in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return IntIntPair Modifier and Type Method Description IntIntPair
IntIntHashMap.KeyValuesView.InternalKeyValuesIterator. next()
Methods in org.eclipse.collections.impl.map.mutable.primitive that return types with arguments of type IntIntPair Modifier and Type Method Description LazyIterable<IntIntPair>
AbstractMutableIntKeySet. cartesianProduct(IntSet set)
java.util.Iterator<IntIntPair>
IntIntHashMap.KeyValuesView. iterator()
RichIterable<IntIntPair>
IntIntHashMap. keyValuesView()
RichIterable<IntIntPair>
SynchronizedIntIntMap. keyValuesView()
RichIterable<IntIntPair>
UnmodifiableIntIntMap. keyValuesView()
Methods in org.eclipse.collections.impl.map.mutable.primitive with parameters of type IntIntPair Modifier and Type Method Description void
SynchronizedIntIntMap. putPair(IntIntPair keyValuePair)
void
UnmodifiableIntIntMap. putPair(IntIntPair keyValuePair)
Method parameters in org.eclipse.collections.impl.map.mutable.primitive with type arguments of type IntIntPair Modifier and Type Method Description void
IntIntHashMap.KeyValuesView. each(Procedure<? super IntIntPair> procedure)
<P> void
IntIntHashMap.KeyValuesView. forEachWith(Procedure2<? super IntIntPair,? super P> procedure, P parameter)
void
IntIntHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super IntIntPair> objectIntProcedure)
-
Uses of IntIntPair in org.eclipse.collections.impl.set.immutable.primitive
Methods in org.eclipse.collections.impl.set.immutable.primitive that return types with arguments of type IntIntPair Modifier and Type Method Description LazyIterable<IntIntPair>
ImmutableIntEmptySet. cartesianProduct(IntSet set)
LazyIterable<IntIntPair>
ImmutableIntSingletonSet. cartesianProduct(IntSet set)
-
Uses of IntIntPair in org.eclipse.collections.impl.set.mutable.primitive
Methods in org.eclipse.collections.impl.set.mutable.primitive that return types with arguments of type IntIntPair Modifier and Type Method Description LazyIterable<IntIntPair>
SynchronizedIntSet. cartesianProduct(IntSet set)
LazyIterable<IntIntPair>
UnmodifiableIntSet. cartesianProduct(IntSet set)
-
Uses of IntIntPair in org.eclipse.collections.impl.set.primitive
Methods in org.eclipse.collections.impl.set.primitive that return types with arguments of type IntIntPair Modifier and Type Method Description LazyIterable<IntIntPair>
AbstractIntSet. cartesianProduct(IntSet set)
-
Uses of IntIntPair in org.eclipse.collections.impl.string.immutable
Methods in org.eclipse.collections.impl.string.immutable that return types with arguments of type IntIntPair Modifier and Type Method Description ImmutableList<IntIntPair>
CodePointAdapter. zipInt(IntIterable iterable)
ImmutableList<IntIntPair>
CodePointList. zipInt(IntIterable iterable)
-
Uses of IntIntPair in org.eclipse.collections.impl.tuple.primitive
Classes in org.eclipse.collections.impl.tuple.primitive that implement IntIntPair Modifier and Type Class Description class
IntIntPairImpl
This file was automatically generated from template file primitivePrimitivePairImpl.stgMethods in org.eclipse.collections.impl.tuple.primitive that return IntIntPair Modifier and Type Method Description static IntIntPair
PrimitiveTuples. pair(int one, int two)
Methods in org.eclipse.collections.impl.tuple.primitive with parameters of type IntIntPair Modifier and Type Method Description int
IntIntPairImpl. compareTo(IntIntPair that)
-