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. -
-
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 thecountleast frequently occurring items.ListIterable<IntIntPair>IntBag. bottomOccurrences(int count)Returns thecountleast frequently occurring items.MutableList<IntIntPair>MutableIntBag. bottomOccurrences(int count)Returns thecountleast frequently occurring items.ImmutableList<IntIntPair>ImmutableIntBag. topOccurrences(int count)Returns thecountmost frequently occurring items.ListIterable<IntIntPair>IntBag. topOccurrences(int count)Returns thecountmost frequently occurring items.MutableList<IntIntPair>MutableIntBag. topOccurrences(int count)Returns thecountmost 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 anImmutableListformed from thisImmutableIntListand anotherIntListby combining corresponding elements in pairs.default ListIterable<IntIntPair>IntList. zipInt(IntIterable iterable)Returns aListIterableformed from thisIntListand anotherIntListby combining corresponding elements in pairs.default MutableList<IntIntPair>MutableIntList. zipInt(IntIterable iterable)Returns aMutableListformed from thisMutableIntListand anotherIntListby combining corresponding elements in pairs. -
Uses of 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 voidMutableIntIntMap. 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 MutableIntIntMapMutableIntIntMap. withAllKeyValues(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 ofthisand b is a member ofset.
-