Uses of Interface
org.eclipse.collections.api.tuple.primitive.DoubleObjectPair
-
Packages that use DoubleObjectPair 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 DoubleObjectPair in org.eclipse.collections.api.list.primitive
Methods in org.eclipse.collections.api.list.primitive that return types with arguments of type DoubleObjectPair Modifier and Type Method Description default <T> ListIterable<DoubleObjectPair<T>>DoubleList. zip(Iterable<T> iterable)Returns aListIterableformed from thisDoubleListand aListIterableby combining corresponding elements in pairs.default <T> ImmutableList<DoubleObjectPair<T>>ImmutableDoubleList. zip(Iterable<T> iterable)Returns anImmutableListformed from thisImmutableDoubleListand aListIterableby combining corresponding elements in pairs.default <T> MutableList<DoubleObjectPair<T>>MutableDoubleList. zip(Iterable<T> list)Returns aMutableListformed from thisMutableDoubleListand aListIterableby combining corresponding elements in pairs. -
Uses of DoubleObjectPair in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return types with arguments of type DoubleObjectPair Modifier and Type Method Description RichIterable<DoubleObjectPair<V>>DoubleObjectMap. keyValuesView()Returns a view of the key/value pairs in this map.Methods in org.eclipse.collections.api.map.primitive with parameters of type DoubleObjectPair Modifier and Type Method Description default VMutableDoubleObjectMap. putPair(DoubleObjectPair<V> keyValuePair)This method allows MutableDoubleObjectMap the ability to add an element in the form ofDoubleObjectPair<V>.Method parameters in org.eclipse.collections.api.map.primitive with type arguments of type DoubleObjectPair Modifier and Type Method Description default MutableDoubleObjectMap<V>MutableDoubleObjectMap. withAllKeyValues(Iterable<DoubleObjectPair<V>> keyValuePairs)Puts all of the key/value mappings from the specified pairs into this map.
-