MPQ |
MPQ.abs() |
Return an MPQ whose value is the absolute value of this .
|
MPQ |
MPQ.absAssign() |
Set this MPQ to its absolute value.
|
MPQ |
MPQ.absAssign(MPQ op) |
Set this MPQ to the absolute value of op .
|
MPQ |
MPQ.add(MPQ op) |
Return an MPQ whose value is (this + op) .
|
MPQ |
MPQ.addAssign(MPQ op) |
Set this MPQ to (this + op)
|
MPQ |
MPQ.addAssign(MPQ op1,
MPQ op2) |
Set this MPQ to (op1 + op2) .
|
MPQ |
MPQ.div(MPQ op) |
Return an MPQ whose value is (this / op) .
|
MPQ |
MPQ.div2Exp(long b) |
Return an MPQ whose value is (this / 2b) .
|
MPQ |
MPQ.div2ExpAssign(long b) |
Set this MPQ to (this / 2b) .
|
MPQ |
MPQ.div2ExpAssign(MPQ op,
long b) |
Set this MPQ to (op / 2b) .
|
MPQ |
MPQ.divAssign(MPQ op) |
Set this MPQ to (this / op)
|
MPQ |
MPQ.divAssign(MPQ op1,
MPQ op2) |
Set this MPQ to (op1 / op2) .
|
static MPQ |
MPQ.init() |
Return an MPQ whose value is zero.
|
MPQ |
MPQ.inv() |
Return an MPQ whose value is (1/this) .
|
MPQ |
MPQ.invAssign() |
Set this MPQ to its inverse.
|
MPQ |
MPQ.invAssign(MPQ op) |
Set this MPQ to 1/op .
|
MPQ |
MPQ.mul(MPQ op) |
Return an MPQ whose value is (this * op) .
|
MPQ |
MPQ.mul2Exp(long b) |
Return an MPQ whose value is (this * 2b) .
|
MPQ |
MPQ.mul2ExpAssign(long b) |
Set this MPQ to (this * 2b) .
|
MPQ |
MPQ.mul2ExpAssign(MPQ op,
long b) |
Set this MPQ to (op * 2b) .
|
MPQ |
MPQ.mulAssign(MPQ op) |
Set this MPQ to (this * op)
|
MPQ |
MPQ.mulAssign(MPQ op1,
MPQ op2) |
Set this MPQ to (op1 * op2) .
|
MPQ |
MPQ.neg() |
Return an MPQ whose value is the quotient of (- this) .
|
MPQ |
MPQ.negAssign() |
Set this MPQ to its opposite.
|
MPQ |
MPQ.negAssign(MPQ op) |
Set this MPQ to (- op) .
|
MPQ |
MPQ.set(double op) |
Set this MPQ to op .
|
MPQ |
MPQ.set(long num,
long den) |
Set this MPQ to (<num/>den) .
|
MPQ |
MPQ.set(MPF op) |
Set this MPQ to op .
|
MPQ |
MPQ.set(MPQ op) |
Set this MPQ to op .
|
MPQ |
MPQ.set(MPZ op) |
Set this MPQ to op .
|
MPQ |
MPQ.setDen(MPZ den) |
Set the denominator of this to the value den .
|
MPQ |
MPQ.setNum(MPZ num) |
Set the numerator of this to the value num .
|
MPQ |
MPQ.setUi(long num,
long den) |
Set this MPQ to (num/den) .
|
MPQ |
MPQ.setValue(double op) |
Set this MPQ to op op .
|
MPQ |
MPQ.setValue(long op) |
Set this MPQ to op .
|
MPQ |
MPQ.setValue(MPF op) |
Set this MPQ to op .
|
MPQ |
MPQ.setValue(MPQ op) |
Set this MPQ to op .
|
MPQ |
MPQ.setValue(java.lang.String str) |
Set this MPQ to the value represented by the string str in
decimal base.
|
MPQ |
MPQ.setValue(java.lang.String str,
int base) |
Set this MPQ to the number represented by the string str in
the specified base .
|
MPQ |
MPQ.sub(MPQ op) |
Return an MPQ whose value is (this - op) .
|
MPQ |
MPQ.subAssign(MPQ op) |
Set this MPQ to (this - op)
|
MPQ |
MPQ.subAssign(MPQ op1,
MPQ op2) |
Set this MPQ to (op1 - op2) .
|
MPQ |
MPQ.swap(MPQ op) |
Swap the value of this MPQ with the value of op .
|