Package | Description |
---|---|
gov.sandia.cognition.math |
Provides classes for mathematical computation.
|
Modifier and Type | Method and Description |
---|---|
MutableLong |
MutableLong.clone() |
MutableLong |
MutableLong.divide(MutableLong other) |
MutableLong |
MutableLong.dotTimes(MutableLong other) |
MutableLong |
MutableLong.minus(MutableLong other) |
MutableLong |
MutableLong.negative() |
MutableLong |
MutableLong.plus(MutableLong other) |
MutableLong |
MutableLong.scale(double scaleFactor) |
MutableLong |
MutableLong.scaledMinus(double scaleFactor,
MutableLong other) |
MutableLong |
MutableLong.scaledPlus(double scaleFactor,
MutableLong other) |
MutableLong |
MutableLong.times(MutableLong other) |
Modifier and Type | Method and Description |
---|---|
int |
MutableLong.compareTo(MutableLong other) |
MutableLong |
MutableLong.divide(MutableLong other) |
void |
MutableLong.divideEquals(MutableLong other) |
MutableLong |
MutableLong.dotTimes(MutableLong other) |
void |
MutableLong.dotTimesEquals(MutableLong other) |
boolean |
MutableLong.equals(MutableLong other)
Determines if this MutableLong is equal to another MutableLong.
|
boolean |
MutableLong.equals(MutableLong other,
double effectiveZero) |
MutableLong |
MutableLong.minus(MutableLong other) |
void |
MutableLong.minusEquals(MutableLong other) |
MutableLong |
MutableLong.plus(MutableLong other) |
void |
MutableLong.plusEquals(MutableLong other) |
MutableLong |
MutableLong.scaledMinus(double scaleFactor,
MutableLong other) |
void |
MutableLong.scaledMinusEquals(double scaleFactor,
MutableLong other) |
MutableLong |
MutableLong.scaledPlus(double scaleFactor,
MutableLong other) |
void |
MutableLong.scaledPlusEquals(double scaleFactor,
MutableLong other) |
MutableLong |
MutableLong.times(MutableLong other) |
void |
MutableLong.timesEquals(MutableLong other) |
Constructor and Description |
---|
MutableLong(MutableLong other)
Creates a copy of a
MutableLong . |