BigValue
, MyBigDecimal
public interface IBigValue
Modifier and Type | Method | Description |
---|---|---|
void |
DE(IBigValue x) |
Divide-equals (/=) operation.
|
void |
E(double value) |
Equals (=) operation.
|
void |
E(IBigValue v) |
Equals (=) operation.
|
IBigValue |
getZero() |
Returns an instance of the class representing the value zero.
|
boolean |
isPositive() |
Returns true if this instance has a value greater than zero.
|
boolean |
isZero() |
Returns true if this instance has a value of zero.
|
double |
lnValue() |
Returns logarithm of the value represented by the instance.
|
void |
PE(IBigValue x) |
Plus-equals (+=) operation.
|
void |
PEa1Tv1(double a1,
IBigValue v1) |
Plus-equals (+=) a1 times v1.
|
void |
TE(double a1) |
Times-equals (*=).
|
void |
TE(IBigValue x) |
Times-equals (*=) operation.
|
double |
value() |
Returns the value held by the instance (in true form, not as log, and with sign applied).
|
IBigValue getZero()
boolean isZero()
double value()
boolean isPositive()
double lnValue()
void E(double value)
void E(IBigValue v)
void PE(IBigValue x)
void PEa1Tv1(double a1, IBigValue v1)
void TE(IBigValue x)
void DE(IBigValue x)
void TE(double a1)
a1
-