public class IntDoubleMutablePair extends java.lang.Object implements IntDoublePair, java.io.Serializable
Pair; provides some additional methods that use polymorphism to avoid (un)boxing.| Modifier and Type | Field and Description |
|---|---|
protected int |
left |
protected double |
right |
| Constructor and Description |
|---|
IntDoubleMutablePair(int left,
double right)
Creates a new type-specific mutable
Pair with given left and right value. |
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(java.lang.Object other) |
int |
hashCode() |
IntDoubleMutablePair |
left(int l)
Sets the left element of this pair (optional operation).
|
int |
leftInt()
Returns the left element of this pair.
|
static IntDoubleMutablePair |
of(int left,
double right)
Returns a new type-specific mutable
Pair with given left and right value. |
IntDoubleMutablePair |
right(double r)
Sets the right element of this pair (optional operation).
|
double |
rightDouble()
Returns the right element of this pair.
|
java.lang.String |
toString()
Returns a string representation of this pair in the form <l,r>.
|
public IntDoubleMutablePair(int left,
double right)
Pair with given left and right value.left - the left value.right - the right value.public static IntDoubleMutablePair of(int left, double right)
Pair with given left and right value.of in interface IntDoublePairof in interface it.unimi.dsi.fastutil.Pair<java.lang.Integer,java.lang.Double>left - the left value.right - the right value.public int leftInt()
IntDoublePairleftInt in interface IntDoublePairpublic IntDoubleMutablePair left(int l)
IntDoublePairleft in interface IntDoublePairl - a new value for the left element.public double rightDouble()
IntDoublePairrightDouble in interface IntDoublePairpublic IntDoubleMutablePair right(double r)
IntDoublePairright in interface IntDoublePairr - a new value for the right element.public boolean equals(java.lang.Object other)
equals in class java.lang.Objectpublic int hashCode()
hashCode in class java.lang.Objectpublic java.lang.String toString()
toString in class java.lang.Object