tenMM.plus(asInches);
tenMM.minus(asInches);
tenMM.times(asInches);
tenMM.div(asInches);
// just doubles also works for times and divide
tenMM.times(10);
tenMM.div(10);
// the inverse (-tenMM)
tenMM.unaryMinus();
// this is a no-op (+tenMM)
tenMM.unaryPlus();
// the sign of the value (-1.0, 0.0, 1.0)
tenMM.getSign();
// the absolute value
tenMM.getAbsoluteValue();
// if the stored value is Double.NaN
tenMM.isNaN();
// unit specific error calculation (behaves differently for `Angle`s)
tenMM.findError(asInches);
// modulo (%)
// note that there is also rem, which is the same
tenMM.mod(asInches);
tenMM.mod(10);
// gets the value of this when converted to the supplied unit
// returns a double, not a new Distance
tenMM.get(DistanceUnits.INCH);
// coerce's the unit to be in these bounds
tenMM.coerceAtLeast(asInches);
tenMM.coerceAtMost(asInches);
tenMM.coerceIn(asInches, asInches);