Package it.unimi.dsi.fastutil.shorts
Interface ShortShortSortedPair
-
- All Superinterfaces:
Pair<java.lang.Short,java.lang.Short>
,java.io.Serializable
,ShortShortPair
,SortedPair<java.lang.Short>
- All Known Implementing Classes:
ShortShortImmutableSortedPair
public interface ShortShortSortedPair extends ShortShortPair, SortedPair<java.lang.Short>, 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(short 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 ShortShortSortedPair
of(short left, short right)
Returns a new type-specific immutableSortedPair
with given left and right value.-
Methods inherited from interface it.unimi.dsi.fastutil.shorts.ShortShortPair
first, first, first, firstShort, key, key, key, keyShort, left, left, left, leftShort, right, right, right, rightShort, second, second, second, secondShort, value, value, value, valueShort
-
-
-
-
Method Detail
-
of
static ShortShortSortedPair of(short left, short 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(short 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.Short>
- Parameters:
o
- an object, ornull
-- Returns:
- true if one of the two elements of this sorted pair is equal to
o
.
-
-