Package it.unimi.dsi.fastutil.floats
Interface FloatFloatSortedPair
-
- All Superinterfaces:
FloatFloatPair
,Pair<java.lang.Float,java.lang.Float>
,java.io.Serializable
,SortedPair<java.lang.Float>
- All Known Implementing Classes:
FloatFloatImmutableSortedPair
public interface FloatFloatSortedPair extends FloatFloatPair, SortedPair<java.lang.Float>, java.io.Serializable
A type-specific immutableSortedPair
.
-
-
Method Summary
All Methods Static Methods Instance Methods Default Methods Deprecated Methods Modifier and Type Method Description default boolean
contains(float e)
Returns true if one of the two elements of this sorted pair is equal to a given element.default boolean
contains(java.lang.Object o)
Deprecated.Please use the corresponding type-specific method instead.static FloatFloatSortedPair
of(float left, float right)
Returns a new type-specific immutableSortedPair
with given left and right value.-
Methods inherited from interface it.unimi.dsi.fastutil.floats.FloatFloatPair
first, first, first, firstFloat, key, key, key, keyFloat, left, left, left, leftFloat, right, right, right, rightFloat, second, second, second, secondFloat, value, value, value, valueFloat
-
-
-
-
Method Detail
-
of
static FloatFloatSortedPair of(float left, float right)
Returns a new type-specific immutableSortedPair
with given left and right value.Note that if
left
andright
are in the wrong order, they will be exchanged.- Parameters:
left
- the left value.right
- the right value.- Implementation Specification:
- This factory method delegates to the factory method of the corresponding immutable implementation.
-
contains
default boolean contains(float e)
Returns true if one of the two elements of this sorted pair is equal to a given element.- Parameters:
e
- an element.- Returns:
- true if one of the two elements of this sorted pair is equal to
e
. - See Also:
SortedPair.contains(Object)
-
contains
@Deprecated default boolean contains(java.lang.Object o)
Deprecated.Please use the corresponding type-specific method instead.Returns true if one of the two elements of this sorted pair is equal to a given object.- Specified by:
contains
in interfaceSortedPair<java.lang.Float>
- Parameters:
o
- an object, ornull
-- Returns:
- true if one of the two elements of this sorted pair is equal to
o
.
-
-