Uses of Interface
org.eclipse.collections.api.tuple.primitive.LongObjectPair
-
Packages that use LongObjectPair Package Description 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. -
-
Uses of LongObjectPair in org.eclipse.collections.api.list.primitive
Methods in org.eclipse.collections.api.list.primitive that return types with arguments of type LongObjectPair Modifier and Type Method Description default <T> ImmutableList<LongObjectPair<T>>ImmutableLongList. zip(Iterable<T> iterable)Returns anImmutableListformed from thisImmutableLongListand aListIterableby combining corresponding elements in pairs.default <T> ListIterable<LongObjectPair<T>>LongList. zip(Iterable<T> iterable)Returns aListIterableformed from thisLongListand aListIterableby combining corresponding elements in pairs.default <T> MutableList<LongObjectPair<T>>MutableLongList. zip(Iterable<T> list)Returns aMutableListformed from thisMutableLongListand aListIterableby combining corresponding elements in pairs. -
Uses of LongObjectPair in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return types with arguments of type LongObjectPair Modifier and Type Method Description RichIterable<LongObjectPair<V>>LongObjectMap. keyValuesView()Returns a view of the key/value pairs in this map.Methods in org.eclipse.collections.api.map.primitive with parameters of type LongObjectPair Modifier and Type Method Description default VMutableLongObjectMap. putPair(LongObjectPair<V> keyValuePair)This method allows MutableLongObjectMap the ability to add an element in the form ofLongObjectPair<V>.Method parameters in org.eclipse.collections.api.map.primitive with type arguments of type LongObjectPair Modifier and Type Method Description default MutableLongObjectMap<V>MutableLongObjectMap. withAllKeyValues(Iterable<LongObjectPair<V>> keyValuePairs)Puts all of the key/value mappings from the specified pairs into this map.
-