Uses of Interface
org.eclipse.collections.api.tuple.primitive.FloatFloatPair
Packages that use FloatFloatPair
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 FloatFloatPair in org.eclipse.collections.api.list.primitive
Methods in org.eclipse.collections.api.list.primitive that return types with arguments of type FloatFloatPairModifier and TypeMethodDescriptiondefault ListIterable<FloatFloatPair>FloatList.zipFloat(FloatIterable iterable) Returns aListIterableformed from thisFloatListand anotherFloatListby combining corresponding elements in pairs.default ImmutableList<FloatFloatPair>ImmutableFloatList.zipFloat(FloatIterable iterable) Returns anImmutableListformed from thisImmutableFloatListand anotherFloatListby combining corresponding elements in pairs.default MutableList<FloatFloatPair>MutableFloatList.zipFloat(FloatIterable iterable) Returns aMutableListformed from thisMutableFloatListand anotherFloatListby combining corresponding elements in pairs. -
Uses of FloatFloatPair in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return types with arguments of type FloatFloatPairModifier and TypeMethodDescriptionFloatFloatMap.keyValuesView()Returns a view of the key/value pairs in this map.Methods in org.eclipse.collections.api.map.primitive with parameters of type FloatFloatPairModifier and TypeMethodDescriptiondefault voidMutableFloatFloatMap.putPair(FloatFloatPair keyValuePair) This method allows MutableFloatFloatMap the ability to add an element in the form of FloatFloatPair.Method parameters in org.eclipse.collections.api.map.primitive with type arguments of type FloatFloatPairModifier and TypeMethodDescriptiondefault MutableFloatFloatMapMutableFloatFloatMap.withAllKeyValues(Iterable<FloatFloatPair> keyValuePairs) Puts all of the key/value mappings from the specified pairs into this map. -
Uses of FloatFloatPair in org.eclipse.collections.api.set.primitive
Methods in org.eclipse.collections.api.set.primitive that return types with arguments of type FloatFloatPairModifier and TypeMethodDescriptionFloatSet.cartesianProduct(FloatSet set) Returns the set whose members are all possible ordered pairs (a, b) where a is a member ofthisand b is a member ofset.