Uses of Interface
org.eclipse.collections.api.tuple.primitive.LongLongPair
Packages that use LongLongPair
Package
Description
This package contains mutable and immutable primitive list API.
This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.
This package contains API for mutable and immutable primitive sets.
-
Uses of LongLongPair in org.eclipse.collections.api.list.primitive
Methods in org.eclipse.collections.api.list.primitive that return types with arguments of type LongLongPairModifier and TypeMethodDescriptiondefault ImmutableList<LongLongPair>ImmutableLongList.zipLong(LongIterable iterable) Returns anImmutableListformed from thisImmutableLongListand anotherLongListby combining corresponding elements in pairs.default ListIterable<LongLongPair>LongList.zipLong(LongIterable iterable) Returns aListIterableformed from thisLongListand anotherLongListby combining corresponding elements in pairs.default MutableList<LongLongPair>MutableLongList.zipLong(LongIterable iterable) Returns aMutableListformed from thisMutableLongListand anotherLongListby combining corresponding elements in pairs. -
Uses of LongLongPair in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return types with arguments of type LongLongPairModifier and TypeMethodDescriptionLongLongMap.keyValuesView()Returns a view of the key/value pairs in this map.Methods in org.eclipse.collections.api.map.primitive with parameters of type LongLongPairModifier and TypeMethodDescriptiondefault voidMutableLongLongMap.putPair(LongLongPair keyValuePair) This method allows MutableLongLongMap the ability to add an element in the form of LongLongPair.Method parameters in org.eclipse.collections.api.map.primitive with type arguments of type LongLongPairModifier and TypeMethodDescriptiondefault MutableLongLongMapMutableLongLongMap.withAllKeyValues(Iterable<LongLongPair> keyValuePairs) Puts all of the key/value mappings from the specified pairs into this map. -
Uses of LongLongPair in org.eclipse.collections.api.set.primitive
Methods in org.eclipse.collections.api.set.primitive that return types with arguments of type LongLongPairModifier and TypeMethodDescriptionLongSet.cartesianProduct(LongSet set) Returns the set whose members are all possible ordered pairs (a, b) where a is a member ofthisand b is a member ofset.