Package it.unimi.dsi.fastutil.bytes
Interface ByteByteSortedPair
- All Superinterfaces:
ByteBytePair,Pair<Byte,,Byte> Serializable,SortedPair<Byte>
- All Known Implementing Classes:
ByteByteImmutableSortedPair
A type-specific immutable
SortedPair.-
Method Summary
Modifier and TypeMethodDescriptiondefault booleancontains(byte e) Returns true if one of the two elements of this sorted pair is equal to a given element.default booleanDeprecated.Please use the corresponding type-specific method instead.static ByteByteSortedPairof(byte left, byte right) Returns a new type-specific immutableSortedPairwith given left and right value.
-
Method Details
-
of
Returns a new type-specific immutableSortedPairwith given left and right value.Note that if
leftandrightare 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(byte 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:
-
contains
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:
containsin interfaceSortedPair<Byte>- Parameters:
o- an object, ornull-- Returns:
- true if one of the two elements of this sorted pair is equal to
o.
-